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

@@ -133,13 +133,13 @@ export class GitopsViewPipelines extends DeesElement {
{
name: 'View Jobs',
iconName: 'lucide:list',
type: ['inRow'],
type: ['inRow', 'contextmenu'],
actionFunc: async ({ item }: any) => { await this.viewJobs(item); },
},
{
name: 'Retry',
iconName: 'lucide:refresh-cw',
type: ['inRow'],
iconName: 'lucide:refreshCw',
type: ['inRow', 'contextmenu'],
actionFunc: async ({ item }: any) => {
await appstate.dataStatePart.dispatchAction(appstate.retryPipelineAction, {
connectionId: this.selectedConnectionId,
@@ -150,8 +150,8 @@ export class GitopsViewPipelines extends DeesElement {
},
{
name: 'Cancel',
iconName: 'lucide:x-circle',
type: ['inRow'],
iconName: 'lucide:xCircle',
type: ['inRow', 'contextmenu'],
actionFunc: async ({ item }: any) => {
await appstate.dataStatePart.dispatchAction(appstate.cancelPipelineAction, {
connectionId: this.selectedConnectionId,