From 8c267c4baf63971933ff5d13fff525b575523359 Mon Sep 17 00:00:00 2001 From: SarahBellaha Date: Thu, 5 Dec 2024 08:34:31 +0100 Subject: [PATCH] front: lmr: reduce grid margins value from 35s to 5s Signed-off-by: SarahBellaha --- .../applications/stdcm/components/StdcmForm/StdcmConfig.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/applications/stdcm/components/StdcmForm/StdcmConfig.tsx b/front/src/applications/stdcm/components/StdcmForm/StdcmConfig.tsx index d564c7d9a23..298d90c4976 100644 --- a/front/src/applications/stdcm/components/StdcmForm/StdcmConfig.tsx +++ b/front/src/applications/stdcm/components/StdcmForm/StdcmConfig.tsx @@ -120,8 +120,8 @@ const StdcmConfig = ({ useEffect(() => { if (!isDebugMode) { - dispatch(updateGridMarginAfter(35)); - dispatch(updateGridMarginBefore(35)); + dispatch(updateGridMarginAfter(5)); + dispatch(updateGridMarginBefore(5)); dispatch(updateStdcmStandardAllowance({ type: 'time_per_distance', value: 4.5 })); } }, [isDebugMode]);