From c1aae67a04c7ea3994b8f64d7866c56f7b49ce69 Mon Sep 17 00:00:00 2001 From: Charlie Kolb Date: Tue, 22 Jul 2025 10:44:57 +0200 Subject: [PATCH] fix(editor): Don't hide FocusPanel when NodeCreator is opened to avoid canvas shift (no-changelog) (#17454) --- .../editor-ui/src/components/FocusPanel.vue | 3 +-- .../Node/NodeCreator/NodeCreator.vue | 3 +++ .../editor-ui/src/composables/useStyles.ts | 2 +- .../editor-ui/src/stores/focusPanel.store.ts | 19 ++----------------- .../frontend/editor-ui/src/views/NodeView.vue | 12 ------------ 5 files changed, 7 insertions(+), 32 deletions(-) diff --git a/packages/frontend/editor-ui/src/components/FocusPanel.vue b/packages/frontend/editor-ui/src/components/FocusPanel.vue index a1b99383b6..a198c72833 100644 --- a/packages/frontend/editor-ui/src/components/FocusPanel.vue +++ b/packages/frontend/editor-ui/src/components/FocusPanel.vue @@ -67,7 +67,6 @@ const resolvedParameter = computed(() => ); const focusPanelActive = computed(() => focusPanelStore.focusPanelActive); -const focusPanelHidden = computed(() => focusPanelStore.focusPanelHidden); const focusPanelWidth = computed(() => focusPanelStore.focusPanelWidth); const isDisabled = computed(() => { @@ -314,7 +313,7 @@ const onResizeThrottle = useThrottleFn(onResize, 10);