Skip to content

Commit

Permalink
fix watch spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKhizhnyak committed Jan 31, 2025
1 parent 9fa9176 commit 4e72e01
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions ui/src/pages/MainPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,12 @@ const gridOptions: GridOptions<TreeResult> = {
};
const reloadKey = ref(0);
watch(() => model.outputs.calculating, () => {
++reloadKey.value;
}, { immediate: true });
watch(
() => model.outputs.calculating,
() => {
++reloadKey.value;
},
{ immediate: true });
</script>

<template>
Expand Down

0 comments on commit 4e72e01

Please sign in to comment.