From 816a888ab1f8f5e90c646e95377937d83bf0f3a7 Mon Sep 17 00:00:00 2001 From: Noemi Frisina Date: Tue, 17 Feb 2026 10:36:07 +0000 Subject: [PATCH 1/4] Fix scan status PVs for monitor screen --- src/screens/BeamlineStats.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/BeamlineStats.tsx b/src/screens/BeamlineStats.tsx index 34e9645..e7660c3 100644 --- a/src/screens/BeamlineStats.tsx +++ b/src/screens/BeamlineStats.tsx @@ -85,12 +85,12 @@ function ScanStatus(props: Omit) { > From 081ad6360ab376d9d4e50554766cdbe5ad5c2b35 Mon Sep 17 00:00:00 2001 From: Noemi Frisina Date: Tue, 17 Feb 2026 10:39:55 +0000 Subject: [PATCH 2/4] Fix config server path --- src/screens/OavMover/OAVStageController.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/OavMover/OAVStageController.tsx b/src/screens/OavMover/OAVStageController.tsx index e55204c..a517b50 100644 --- a/src/screens/OavMover/OAVStageController.tsx +++ b/src/screens/OavMover/OAVStageController.tsx @@ -8,9 +8,9 @@ import { forceString, useParsedPvConnection } from "#/pv/util.ts"; import { ZoomLevels } from "#/pv/enumPvValues.ts"; import { useMemo } from "react"; +const DISPLAY_CONFIG_ENDPOINT = "/dls_sw/i24/software/daq_configuration/domain/display.configuration"; + export function OavMover() { - const DISPLAY_CONFIG_ENDPOINT = - "/dls_sw/i24/software/daq_configuration/display.configuration"; const beamCenterQuery = useConfigCall(DISPLAY_CONFIG_ENDPOINT); const currentZoomValue = String( useParsedPvConnection({ From 411ab460cc79ce684b2165cd6f9a8c4a102bdf88 Mon Sep 17 00:00:00 2001 From: Noemi Frisina Date: Tue, 17 Feb 2026 10:51:13 +0000 Subject: [PATCH 3/4] Make lint happy --- src/screens/OavMover/OAVStageController.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/screens/OavMover/OAVStageController.tsx b/src/screens/OavMover/OAVStageController.tsx index a517b50..26e27cf 100644 --- a/src/screens/OavMover/OAVStageController.tsx +++ b/src/screens/OavMover/OAVStageController.tsx @@ -8,7 +8,8 @@ import { forceString, useParsedPvConnection } from "#/pv/util.ts"; import { ZoomLevels } from "#/pv/enumPvValues.ts"; import { useMemo } from "react"; -const DISPLAY_CONFIG_ENDPOINT = "/dls_sw/i24/software/daq_configuration/domain/display.configuration"; +const DISPLAY_CONFIG_ENDPOINT = + "/dls_sw/i24/software/daq_configuration/domain/display.configuration"; export function OavMover() { const beamCenterQuery = useConfigCall(DISPLAY_CONFIG_ENDPOINT); From e7aae9c7e73624b57fab636b36c7152cf6d16f31 Mon Sep 17 00:00:00 2001 From: Tamoor Shahid Date: Thu, 19 Feb 2026 10:57:51 +0000 Subject: [PATCH 4/4] Prettier changes --- src/screens/OavMover/OAVStageController.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/OavMover/OAVStageController.tsx b/src/screens/OavMover/OAVStageController.tsx index 26e27cf..4853258 100644 --- a/src/screens/OavMover/OAVStageController.tsx +++ b/src/screens/OavMover/OAVStageController.tsx @@ -8,7 +8,7 @@ import { forceString, useParsedPvConnection } from "#/pv/util.ts"; import { ZoomLevels } from "#/pv/enumPvValues.ts"; import { useMemo } from "react"; -const DISPLAY_CONFIG_ENDPOINT = +const DISPLAY_CONFIG_ENDPOINT = "/dls_sw/i24/software/daq_configuration/domain/display.configuration"; export function OavMover() {