style: Zeichenreihenfolge angepasst – Messwertlinie hat nun Priorität im Chart

in LoopMeasurementChart.tsx
This commit is contained in:
ISA
2025-05-07 14:20:56 +02:00
parent 300318cae7
commit 1d1ae31c90
2 changed files with 5 additions and 1 deletions

View File

@@ -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
},
],
};

View File

@@ -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;