diff --git a/packages/frontend/editor-ui/src/components/FocusPanel.vue b/packages/frontend/editor-ui/src/components/FocusPanel.vue index d27d01124c..b43be1f3df 100644 --- a/packages/frontend/editor-ui/src/components/FocusPanel.vue +++ b/packages/frontend/editor-ui/src/components/FocusPanel.vue @@ -62,6 +62,7 @@ const resolvedParameter = computed(() => ); const focusPanelActive = computed(() => focusPanelStore.focusPanelActive); +const focusPanelHidden = computed(() => focusPanelStore.focusPanelHidden); const focusPanelWidth = computed(() => focusPanelStore.focusPanelWidth); const isDisabled = computed(() => { @@ -302,7 +303,7 @@ const onResizeThrottle = useThrottleFn(onResize, 10);