Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit 59631f5

Browse files
committed
Change the no task definition message on jobs
Change class from Danger to Info Updated message from `Deleted` to `No Task Definition`. resolves #579
1 parent 6b6b40a commit 59631f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/app/jobs/components/definition-status.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ export class DefinitionStatusComponent implements AfterContentInit, DoCheck {
3838
if (this.jobExecution) {
3939

4040
if (!this.jobExecution.defined) {
41-
this.labelClass = 'danger';
42-
this.label = 'Deleted';
41+
this.labelClass = 'info';
42+
this.label = 'No Task Definition';
4343
}
4444
}
4545
}

0 commit comments

Comments
 (0)