From 57baca292a6736c8c2ad9cb10dad313b07928553 Mon Sep 17 00:00:00 2001 From: ISA Date: Mon, 1 Sep 2025 14:03:04 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20K=C3=9C=20ISO=202=20Nachkommastellen=20u?= =?UTF-8?q?nd=20RSL=203=20Nachkommastellen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- .env.production | 2 +- CHANGELOG.md | 5 +++++ components/main/kabelueberwachung/kue705FO/Kue705FO.tsx | 8 ++++++-- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.env.development b/.env.development index f7967db..db6da47 100644 --- a/.env.development +++ b/.env.development @@ -6,6 +6,6 @@ NEXT_PUBLIC_USE_MOCK_BACKEND_LOOP_START=false NEXT_PUBLIC_EXPORT_STATIC=false NEXT_PUBLIC_USE_CGI=false # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.793 +NEXT_PUBLIC_APP_VERSION=1.6.794 NEXT_PUBLIC_CPL_MODE=json # json (Entwicklungsumgebung) oder jsSimulatedProd (CPL ->CGI-Interface-Simulator) oder production (CPL-> CGI-Interface Platzhalter) diff --git a/.env.production b/.env.production index 8f583a3..5569c85 100644 --- a/.env.production +++ b/.env.production @@ -5,5 +5,5 @@ NEXT_PUBLIC_CPL_API_PATH=/CPL NEXT_PUBLIC_EXPORT_STATIC=true NEXT_PUBLIC_USE_CGI=true # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.6.793 +NEXT_PUBLIC_APP_VERSION=1.6.794 NEXT_PUBLIC_CPL_MODE=production \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index e1ce1c9..ae506d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.6.794] – 2025-09-01 + +- fix: System Footer responsive + +--- ## [1.6.793] – 2025-09-01 - fix: playwright headless true diff --git a/components/main/kabelueberwachung/kue705FO/Kue705FO.tsx b/components/main/kabelueberwachung/kue705FO/Kue705FO.tsx index 933fbe6..bd303a6 100644 --- a/components/main/kabelueberwachung/kue705FO/Kue705FO.tsx +++ b/components/main/kabelueberwachung/kue705FO/Kue705FO.tsx @@ -340,7 +340,9 @@ const Kue705FO: React.FC = ({ > {isoDisplayValue === "Abgleich" ? "ISO: Abgleich" - : `ISO: ${Number(isolationswert)} MOhm`} + : `ISO: ${Number(isolationswert) + .toFixed(2) + .replace(".", ",")} MOhm`} {/* 3. Zeile: Schleifenwert, in Rot bei Schleifenfehler, sonst normal */} = ({ Number(kueAlarm2?.[slotIndex]) === 1 ? "text-red-500" : "" }`} > - {`RSL: ${loopDisplayValue} kOhm`} + {`RSL: ${Number(loopDisplayValue) + .toFixed(3) + .replace(".", ",")} kOhm`} diff --git a/package-lock.json b/package-lock.json index 73008de..f72b45c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cpl-v4", - "version": "1.6.793", + "version": "1.6.794", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cpl-v4", - "version": "1.6.793", + "version": "1.6.794", "dependencies": { "@fontsource/roboto": "^5.1.0", "@headlessui/react": "^2.2.4", diff --git a/package.json b/package.json index 7799284..a8d54d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cpl-v4", - "version": "1.6.793", + "version": "1.6.794", "private": true, "scripts": { "dev": "next dev -p 3000",