This commit is contained in:
2026-02-27 11:48:47 +00:00
parent 44b418cbdd
commit 06eae3b443
7 changed files with 21 additions and 19 deletions

View File

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