Add bottom panel to extension manager (#2393)

This commit is contained in:
bymyself
2025-02-02 13:01:42 -07:00
committed by GitHub
parent 57bc7ad312
commit a37671b154

View File

@@ -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,