diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx index db1abf3..ee9e9a3 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx @@ -13,7 +13,7 @@ const LoopChartActionBar: React.FC = () => { try { const apiUrl = process.env.NODE_ENV === "development" - ? "/mockData.json" + ? "/CPLmockData/mockChartData.json" : `/CPL?seite.ACP&DIA1=2025;01;01;2025;07;31;${slotIndex};${schleifenwiderstand}`; const response = await fetch(apiUrl); diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx index 9e0f4bb..472a5d2 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopMeasurementChart.tsx @@ -34,7 +34,7 @@ const LoopMeasurementChart = () => { data: { datasets: [ { - label: "Messwert i (kOhm)", + label: "Messwert Minimum (kOhm)", // Messwert i (kOhm) data: processedData.map((entry) => ({ x: entry.timestampMs, y: entry.i, @@ -44,7 +44,7 @@ const LoopMeasurementChart = () => { fill: true, }, { - label: "Messwert a (kOhm)", + label: "Messwert Maximum (kOhm)", // Messwert a (kOhm) data: processedData.map((entry) => ({ x: entry.timestampMs, y: entry.a, @@ -54,7 +54,7 @@ const LoopMeasurementChart = () => { fill: true, }, { - label: "Messwert g (kOhm)", + label: "Messwert Durchschnitt (kOhm)", // Messwert g (kOhm) data: processedData.map((entry) => ({ x: entry.timestampMs, y: entry.g, diff --git a/config/webVersion.ts b/config/webVersion.ts index 92e5d4b..e27702f 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.63"; +const webVersion = "1.6.64"; export default webVersion; diff --git a/pages/analogeEingaenge.tsx b/pages/analogeEingaenge.tsx index 04cf2fd..04a102f 100644 --- a/pages/analogeEingaenge.tsx +++ b/pages/analogeEingaenge.tsx @@ -18,7 +18,8 @@ function AnalogeEingaenge() {
Diagramm wird hier eingefügt
- + {/* +