From 46c81fd7d07a1328ebd1f4d7c926572db499d51d Mon Sep 17 00:00:00 2001 From: alicia pritchett Date: Thu, 10 Feb 2022 15:12:12 -0500 Subject: [PATCH] typo --- src/app/workflow-spec-list/workflow-spec-list.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/workflow-spec-list/workflow-spec-list.component.ts b/src/app/workflow-spec-list/workflow-spec-list.component.ts index 9fbad47..974f4bd 100644 --- a/src/app/workflow-spec-list/workflow-spec-list.component.ts +++ b/src/app/workflow-spec-list/workflow-spec-list.component.ts @@ -215,7 +215,7 @@ export class WorkflowSpecListComponent implements OnInit { dialogRef.afterClosed().subscribe((data: DeleteWorkflowSpecDialogData) => { if (data && data.confirm && data.workflowSpec && this.canDeleteWorkflowSpec(data.workflowSpec)) { -7 this._deleteWorkflowSpec(data.workflowSpec); + this._deleteWorkflowSpec(data.workflowSpec); if (typeof this.masterStatusSpec !== 'undefined') { this.selectSpec(this.masterStatusSpec); }