refactor(editor): Migrate ui.store to use composition API (no-changelog) (#9892)

This commit is contained in:
Ricardo Espinoza
2024-07-03 15:11:40 -04:00
committed by GitHub
parent 22990342df
commit f64ca621e1
42 changed files with 710 additions and 649 deletions

View File

@@ -49,7 +49,7 @@ export function useCanvasPanning(
return;
}
if (uiStore.isActionActive('dragActive')) {
if (uiStore.isActionActive['dragActive']) {
// If a node does currently get dragged we do not activate the selection
return;
}
@@ -95,7 +95,7 @@ export function useCanvasPanning(
return;
}
if (uiStore.isActionActive('dragActive')) {
if (uiStore.isActionActive['dragActive']) {
return;
}