From dc0d36d5118da28993e53e0638d4add337f01ec6 Mon Sep 17 00:00:00 2001 From: Batuhan ALGUL Date: Sat, 20 Jun 2026 19:54:43 +0300 Subject: [PATCH] Fix spelling error in Logo component acronym attribute The Logo component exposed an attribute named 'accronym' (double c), which is a misspelling of 'acronym'. Closes #30. This adds a new 'acronym' prop alongside the existing 'accronym' prop. A computed value (acronymValue) reads the new prop first and falls back to the old one, so existing consumers passing accronym keep working unchanged. Internal usages in TopHeader.vue and Logo.stories.js are updated to use the corrected 'acronym' name. The old 'accronym' prop is left in place, deprecated but functional, to avoid a breaking change for any external site already using this component. --- app/components/ch/components/Logo.vue | 9 ++++++++- app/components/ch/sections/TopHeader.vue | 4 ++-- app/components/stories/components/Logo.stories.js | 4 ++-- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/app/components/ch/components/Logo.vue b/app/components/ch/components/Logo.vue index b893a3286..a0bf29c1c 100644 --- a/app/components/ch/components/Logo.vue +++ b/app/components/ch/components/Logo.vue @@ -278,7 +278,7 @@