Add source prop to commands (#3429)

Co-authored-by: Benjamin Lu <templu1107@proton.me>
Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Benjamin Lu
2025-04-12 21:20:53 -04:00
committed by GitHub
parent c8b8953e0a
commit b22713daf0
12 changed files with 35 additions and 9 deletions

View File

@@ -49,7 +49,8 @@ export const useBottomPanelStore = defineStore('bottomPanel', () => {
id: `Workspace.ToggleBottomPanelTab.${tab.id}`,
icon: 'pi pi-list',
label: `Toggle ${tab.title} Bottom Panel`,
function: () => toggleBottomPanelTab(tab.id)
function: () => toggleBottomPanelTab(tab.id),
source: 'System'
})
}