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;