fix: added timer clearing

This commit is contained in:
Dmitry-Ilyushechkin
2025-09-25 11:40:43 +03:00
parent 36c034cac3
commit bca030ff65

View File

@ -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 {