update
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user