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

@@ -133,12 +133,14 @@ export class GitopsViewPipelines extends DeesElement {
{
name: 'View Jobs',
iconName: 'lucide:list',
action: async (item: any) => { await this.viewJobs(item); },
type: ['inRow'],
actionFunc: async ({ item }: any) => { await this.viewJobs(item); },
},
{
name: 'Retry',
iconName: 'lucide:refresh-cw',
action: async (item: any) => {
type: ['inRow'],
actionFunc: async ({ item }: any) => {
await appstate.dataStatePart.dispatchAction(appstate.retryPipelineAction, {
connectionId: this.selectedConnectionId,
projectId: this.selectedProjectId,
@@ -149,7 +151,8 @@ export class GitopsViewPipelines extends DeesElement {
{
name: 'Cancel',
iconName: 'lucide:x-circle',
action: async (item: any) => {
type: ['inRow'],
actionFunc: async ({ item }: any) => {
await appstate.dataStatePart.dispatchAction(appstate.cancelPipelineAction, {
connectionId: this.selectedConnectionId,
projectId: this.selectedProjectId,