From bca030ff65335afdeb6adb0d4cfbf3c2c65725c0 Mon Sep 17 00:00:00 2001 From: Dmitry-Ilyushechkin Date: Thu, 25 Sep 2025 11:40:43 +0300 Subject: [PATCH] fix: added timer clearing --- apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index 4200ca390c..9a0b19282a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -27,6 +27,11 @@ const LongActionsController = inject('storeAppOptions')(({storeAppOptions}) => { }; const showLoadMask = (title, immediately = false) => { + if (showTimer) { + clearTimeout(showTimer); + showTimer = null; + } + if (immediately) { loadMask = f7.dialog.preloader(title); } else {