From cde0add5e0f55cb13217c21b27225cc402786a8e Mon Sep 17 00:00:00 2001 From: rouggy Date: Sun, 21 Jun 2026 03:01:05 +0200 Subject: [PATCH] fix: adjusted fields width in qso entry --- frontend/src/App.tsx | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index e00685b..73acde9 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -3150,10 +3150,15 @@ export default function App() { - {/* Row 2: wide Name + QTH + Grid across the full width. */} + {/* Row 2: Name fixed to the Band/Mode/Country column width (300px) so + its right edge lines up with that column below; QTH grows to fill. */}
- {nameBlock} - {qthBlock} +
+ { setName(e.target.value); markEdited('name'); }} /> +
+
+ { setQth(e.target.value); markEdited('qth'); }} /> +
{gridBlock}
@@ -3330,16 +3335,16 @@ export default function App() { /> {/* Left-aligned single line, no scrollbar; auto-scrolled to the newest text (see cwScrollRef effect) so the latest stays in view. */} -
+
{cwText.trim() === '' ? ( listening… ) : ( -
+
{cwText.trim().split(/\s+/).map((tok, i) => (