Skip to content

Commit

Permalink
#75 changed job-history job state background css classes to match wit…
Browse files Browse the repository at this point in the history
…h job summary icon background css
  • Loading branch information
tareq89 committed Jul 20, 2016
1 parent 495b6a5 commit 76c0ff6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/job/job-history/job-history.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ export class JobHistoryComponent implements OnInit {
setJobStatusLabelClass(state: string) {
switch (state) {
case "COMPLETED":
return "label label-success";
return "label green";
case "ENQUEUED":
return "label label-primary";
return "label orange";
case "IN_PROGRESS":
return "label label-info";
return "label blue";
case "CANCELLED":
return "label label-danger";
return "label red";
default:
break;
}
Expand Down

0 comments on commit 76c0ff6

Please sign in to comment.