From e60de10777eb5bcd81fed51dd5b6f7a1d809d87b Mon Sep 17 00:00:00 2001 From: Scrum4Me Agent <30029041+madhura68@users.noreply.github.com> Date: Sat, 9 May 2026 21:35:48 +0200 Subject: [PATCH] feat(PBI-49): add BEM sub-element data-debug-id to StatusBar, NavBar, PanelNavBar Co-Authored-By: Claude Sonnet 4.6 --- components/shared/nav-bar.tsx | 7 +++++-- components/shared/panel-nav-bar.tsx | 4 ++-- components/shared/status-bar.tsx | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/components/shared/nav-bar.tsx b/components/shared/nav-bar.tsx index f3780c2..d05a27f 100644 --- a/components/shared/nav-bar.tsx +++ b/components/shared/nav-bar.tsx @@ -118,7 +118,7 @@ export function NavBar({ > {/* Links: logo + nav */}
- + Scrum4Me {isDemo && ( @@ -157,6 +157,7 @@ export function NavBar({ @@ -195,7 +196,9 @@ export function NavBar({
- + + +
) diff --git a/components/shared/panel-nav-bar.tsx b/components/shared/panel-nav-bar.tsx index 8cf367f..83b842f 100644 --- a/components/shared/panel-nav-bar.tsx +++ b/components/shared/panel-nav-bar.tsx @@ -13,8 +13,8 @@ export function PanelNavBar({ title, actions, className }: PanelNavBarProps) { {...debugProps('panel-nav-bar')} className={cn('flex items-center justify-between px-4 py-2 border-b border-border bg-surface-container-low shrink-0', className)} > - {title} - {actions &&
{actions}
} + {title} + {actions &&
{actions}
}
) } diff --git a/components/shared/status-bar.tsx b/components/shared/status-bar.tsx index c8702a4..4750a0c 100644 --- a/components/shared/status-bar.tsx +++ b/components/shared/status-bar.tsx @@ -20,8 +20,8 @@ export function StatusBar() { className="shrink-0 border-t border-border bg-surface-container-low h-14 px-4 flex items-center justify-between text-sm text-muted-foreground select-none" {...debugProps('status-bar')} > - © {new Date().getFullYear()} Scrum4Me - v{version} · gebouwd op {buildDate}{isDev && } + © {new Date().getFullYear()} Scrum4Me + v{version} · gebouwd op {buildDate}{isDev && } ) }