From a37671b154d382b901d2358366b8b70dac1362da Mon Sep 17 00:00:00 2001 From: bymyself Date: Sun, 2 Feb 2025 13:01:42 -0700 Subject: [PATCH] Add bottom panel to extension manager (#2393) --- src/stores/workspaceStore.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stores/workspaceStore.ts b/src/stores/workspaceStore.ts index 71ff6c454..6fedd3568 100644 --- a/src/stores/workspaceStore.ts +++ b/src/stores/workspaceStore.ts @@ -10,6 +10,7 @@ import { useQueueSettingsStore } from './queueStore' import { useSettingStore } from './settingStore' import { useToastStore } from './toastStore' import { useWorkflowStore } from './workflowStore' +import { useBottomPanelStore } from './workspace/bottomPanelStore' import { useSidebarTabStore } from './workspace/sidebarTabStore' export const useWorkspaceStore = defineStore('workspace', () => { @@ -36,6 +37,7 @@ export const useWorkspaceStore = defineStore('workspace', () => { const workflow = computed(() => useWorkflowStore()) const colorPalette = useColorPaletteService() const dialog = useDialogService() + const bottomPanel = useBottomPanelStore() /** * Registers a sidebar tab. @@ -79,6 +81,7 @@ export const useWorkspaceStore = defineStore('workspace', () => { workflow, colorPalette, dialog, + bottomPanel, registerSidebarTab, unregisterSidebarTab,