From b404390186227ffd8e2532a58d2312b708b23430 Mon Sep 17 00:00:00 2001 From: ISA Date: Mon, 31 Mar 2025 14:12:44 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20TDR=20Dropdown=20verbessert=20=E2=80=93?= =?UTF-8?q?=20Anzeige=20im=20deutschen=20Format=20mit=20Fehlerstelle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Dropdown-Einträge zeigen jetzt nur Zeitstempel (deutsches Format) und Fehlerstelle ("d") an - ID wird weiterhin als `value` genutzt, aber nicht angezeigt - Zeitstempel wird mit `toLocaleString("de-DE", {...})` formatiert - Anzeigeformat z. B.: "27.03.2025, 23:42:41 – Fehlerstelle: 8805 m" --- .../kue705FO/Charts/TDRChart/TDRChartActionBar.tsx | 10 +++++++++- config/webVersion.ts | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx index 64ba7db..c6bb189 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/TDRChart/TDRChartActionBar.tsx @@ -122,7 +122,15 @@ const TDRChartActionBar: React.FC = () => { {idsForSlot.map((entry) => ( ))} diff --git a/config/webVersion.ts b/config/webVersion.ts index 5b2160b..9534980 100644 --- a/config/webVersion.ts +++ b/config/webVersion.ts @@ -6,5 +6,5 @@ 2: Patch oder Hotfix (Bugfixes oder kleine Änderungen). */ -const webVersion = "1.6.193"; +const webVersion = "1.6.194"; export default webVersion;