From 9cbfd39da0eb21d01092ec42d8f86b183468f97c Mon Sep 17 00:00:00 2001 From: Gregory Salaun Date: Fri, 7 Aug 2026 09:53:01 +0200 Subject: [PATCH] ui(cluster): drop the value-looking placeholders in My rig/antenna/satellite 'Flex 8600', 'UB640', 'AO-91', 'U/V' read as real values, so an empty field looked already filled. Removed so an empty field is visibly empty. --- changelog.json | 6 ++++-- frontend/src/components/DetailsPanel.tsx | 8 ++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/changelog.json b/changelog.json index 44b72eb..b3ca1e1 100644 --- a/changelog.json +++ b/changelog.json @@ -3,10 +3,12 @@ "version": "0.23.9", "date": "", "en": [ - "Backup: new \"Back up on every exit\" option (Settings → Backup). With it on, OpsLog backs up the database each time you quit instead of only the first time of the day — so a second session's QSOs are always captured." + "Backup: new \"Back up on every exit\" option (Settings → Backup). With it on, OpsLog backs up the database each time you quit instead of only the first time of the day — so a second session's QSOs are always captured.", + "Cluster details (My station): removed the example placeholders in My rig / My antenna (and the satellite name/mode) — they looked like real values, so an empty field read as already filled." ], "fr": [ - "Sauvegarde : nouvelle option \"Sauvegarder à chaque fermeture\" (Réglages → Sauvegarde). Activée, OpsLog sauvegarde la base à chaque fois que tu quittes au lieu d'une seule fois par jour — les QSO d'une seconde session sont ainsi toujours pris." + "Sauvegarde : nouvelle option \"Sauvegarder à chaque fermeture\" (Réglages → Sauvegarde). Activée, OpsLog sauvegarde la base à chaque fois que tu quittes au lieu d'une seule fois par jour — les QSO d'une seconde session sont ainsi toujours pris.", + "Détails cluster (Ma station) : suppression des exemples en filigrane dans Mon rig / Mon antenne (et nom/mode satellite) — ils ressemblaient à de vraies valeurs, faisant croire qu'un champ vide était déjà rempli." ] }, { diff --git a/frontend/src/components/DetailsPanel.tsx b/frontend/src/components/DetailsPanel.tsx index 749809d..d4ffb2f 100644 --- a/frontend/src/components/DetailsPanel.tsx +++ b/frontend/src/components/DetailsPanel.tsx @@ -465,18 +465,18 @@ export function DetailsPanel({ callsign, prefix, operatorGrid, remoteGrid, qth, - onChange({ my_rig: e.target.value })} /> + onChange({ my_rig: e.target.value })} /> - onChange({ my_antenna: e.target.value })} /> + onChange({ my_antenna: e.target.value })} /> {satelliteMode && ( <> - onChange({ sat_name: e.target.value })} /> + onChange({ sat_name: e.target.value })} /> - onChange({ sat_mode: e.target.value })} /> + onChange({ sat_mode: e.target.value })} /> )}