From 4e72e0121a7724083b9bdc88ff541e4abec8045d Mon Sep 17 00:00:00 2001 From: andrewkhizhnyak Date: Fri, 31 Jan 2025 11:56:14 +0100 Subject: [PATCH] fix watch spaces --- ui/src/pages/MainPage.vue | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/ui/src/pages/MainPage.vue b/ui/src/pages/MainPage.vue index 159cd8d..b9f1c67 100644 --- a/ui/src/pages/MainPage.vue +++ b/ui/src/pages/MainPage.vue @@ -81,9 +81,12 @@ const gridOptions: GridOptions = { }; const reloadKey = ref(0); -watch(() => model.outputs.calculating, () => { - ++reloadKey.value; -}, { immediate: true }); +watch( + () => model.outputs.calculating, + () => { + ++reloadKey.value; + }, + { immediate: true });