From b18f5c491e3a88842701834317c0fb9b2c64dc02 Mon Sep 17 00:00:00 2001 From: Gregory Salaun Date: Thu, 13 Aug 2026 11:04:23 +0200 Subject: [PATCH] fix(entry): the State field was defined but never rendered MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit stateBlock was built and then not placed in the row — the field simply did not exist on screen. Now between QTH and the locator, where it was meant to go. Left column 210 → 230px, and Comment and Note move onto ONE line side by side: two fields that are usually a few words each were taking two full rows of the entry strip. That frees a row for whatever goes there next. --- frontend/src/App.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 80cd3c6..46558f5 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -5895,25 +5895,27 @@ export default function App() { to be pushed outside the entry panel and clipped. Wrapping drops it to its own line instead, which stays readable. */}
-
+
{ setName(e.target.value); markEdited('name'); }} onBlur={() => setName(titleCase)} />
{qthBlock} + {stateBlock} {gridBlock}
{/* Row 3: tight left detail column (Band/Mode/Country) and - single-line Comment/Note on the right. */} + Comment/Note SIDE BY SIDE on the right — one line each was a lot + of vertical space for two fields that are usually short. */}
-
+
{bandRow} {modeRow} {countryRow}
-
- {commentLine} - {noteLine} +
+
{commentLine}
+
{noteLine}