This commit is contained in:
2026-02-27 11:21:27 +00:00
parent 81ead52a72
commit 44b418cbdd
6 changed files with 29 additions and 17 deletions

View File

@@ -100,14 +100,16 @@ export class GitopsViewProjects extends DeesElement {
{
name: 'View Secrets',
iconName: 'lucide:key',
action: async (item: any) => {
type: ['inRow'],
actionFunc: async ({ item }: any) => {
appstate.uiStatePart.dispatchAction(appstate.setActiveViewAction, { view: 'secrets' });
},
},
{
name: 'View Pipelines',
iconName: 'lucide:play',
action: async (item: any) => {
type: ['inRow'],
actionFunc: async ({ item }: any) => {
appstate.uiStatePart.dispatchAction(appstate.setActiveViewAction, { view: 'pipelines' });
},
},