From 1d1ae31c9025c5b99ccc1d077b8c50edd52fc6f0 Mon Sep 17 00:00:00 2001 From: ISA Date: Wed, 7 May 2025 14:20:56 +0200 Subject: [PATCH] =?UTF-8?q?style:=20Zeichenreihenfolge=20angepasst=20?= =?UTF-8?q?=E2=80=93=20Messwertlinie=20hat=20nun=20Priorit=C3=A4t=20im=20C?= =?UTF-8?q?hart=20in=20LoopMeasurementChart.tsx?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Charts/LoopMeasurementChart/LoopMeasurementChart.tsx | 4 ++++ config/webVersion.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx index c1c1c67..f9e3a88 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx @@ -102,6 +102,7 @@ const LoopMeasurementChart = () => { pointRadius: 0, pointHoverRadius: 10, tension: 0.1, + order: 1, // ← hinten }, selectedMode === "DIA0" ? { @@ -114,6 +115,7 @@ const LoopMeasurementChart = () => { pointRadius: 0, pointHoverRadius: 10, tension: 0.1, + order: 3, // ← vorne } : { label: "Messwert Durchschnitt", @@ -125,6 +127,7 @@ const LoopMeasurementChart = () => { pointRadius: 0, pointHoverRadius: 10, tension: 0.1, + order: 3, // ← vorne }, { label: "Messwert Maximum", @@ -136,6 +139,7 @@ const LoopMeasurementChart = () => { pointRadius: 0, pointHoverRadius: 10, tension: 0.1, + order: 1, // ← hinten }, ], }; diff --git a/config/webVersion.ts b/config/webVersion.ts index c407554..735a7fd 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.390"; +const webVersion = "1.6.391"; export default webVersion;