Skip to content

Commit

Permalink
expose bottomPanel
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-byrne committed Feb 2, 2025
1 parent 4eed9c7 commit faa6e28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/stores/workspaceStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand All @@ -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.
Expand Down Expand Up @@ -79,6 +81,7 @@ export const useWorkspaceStore = defineStore('workspace', () => {
workflow,
colorPalette,
dialog,
bottomPanel,

registerSidebarTab,
unregisterSidebarTab,
Expand Down

0 comments on commit faa6e28

Please sign in to comment.