From 446888a330b47176dc492abcb6433e9401f72848 Mon Sep 17 00:00:00 2001 From: rouggy Date: Tue, 7 Jul 2026 21:41:35 +0200 Subject: [PATCH] fix: proper alignment of the version number next to OpsLog --- frontend/src/App.tsx | 6 ++++-- frontend/src/components/FlexPanel.tsx | 8 +++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 8b0b98a..f767f10 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3173,8 +3173,10 @@ export default function App() {
- OpsLog - setShowAbout(true)} title="About OpsLog">v{APP_VERSION} +
+ OpsLog + setShowAbout(true)} title="About OpsLog">v{APP_VERSION} +
diff --git a/frontend/src/components/FlexPanel.tsx b/frontend/src/components/FlexPanel.tsx index 1512caa..919da86 100644 --- a/frontend/src/components/FlexPanel.tsx +++ b/frontend/src/components/FlexPanel.tsx @@ -295,9 +295,11 @@ export function FlexPanel({ onCWSpeed, onReportRST }: { onCWSpeed?: (wpm: number sl.active ? 'border-info bg-info/10 ring-1 ring-info' : 'border-border bg-card hover:bg-muted')}> {sl.letter} - {(sl.freq_hz / 1e6).toFixed(3)} - {sl.mode} - {sl.band ? {sl.band} : null} + + {(sl.freq_hz / 1e6).toFixed(3)} + {sl.mode} + {sl.band ? {sl.band} : null} + {/* TX badge — click a non-TX slice's badge to move TX onto it (e.g. transmit on the active slice). stopPropagation so it doesn't also fire the outer "make active" click. */}