From f14d3789b77202f394c53a8dabe2e53e63e11bd4 Mon Sep 17 00:00:00 2001 From: ISA Date: Tue, 29 Apr 2025 13:34:40 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Vollbildmodus=20bei=20Datum-=20oder=20Da?= =?UTF-8?q?tumsbereichs=C3=A4nderung=20beibehalten=20im=20Kabel=C3=BCberwa?= =?UTF-8?q?chungs-Chart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - setFullScreen(false) aus handleFetchData und loadLoopChartData entfernt - Nutzer bleibt nach Datumsauswahl im gewünschten Vollbildmodus --- .../kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx | 2 -- config/webVersion.ts | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx index 7431fa4..614896c 100644 --- a/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx +++ b/components/main/kabelueberwachung/kue705FO/Charts/LoopMeasurementChart/LoopChartActionBar.tsx @@ -51,7 +51,6 @@ export const useLoopChartLoader = () => { dispatch(setLoading(true)); dispatch(setChartOpen(false)); dispatch(setLoopMeasurementCurveChartData([])); - dispatch(setFullScreen(false)); const startTime = Date.now(); const MIN_LOADING_TIME_MS = 1000; @@ -139,7 +138,6 @@ const LoopChartActionBar: React.FC = () => { dispatch(setLoading(true)); dispatch(setChartOpen(false)); dispatch(setLoopMeasurementCurveChartData([])); - dispatch(setFullScreen(false)); const MIN_LOADING_TIME_MS = 1000; const startTime = Date.now(); diff --git a/config/webVersion.ts b/config/webVersion.ts index 4b857fb..27080bc 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.309"; +const webVersion = "1.6.310"; export default webVersion;