From 76c0ff6656076ed09389cb72939e0f537c48e8ad Mon Sep 17 00:00:00 2001 From: tareq89 Date: Wed, 20 Jul 2016 12:29:46 +0600 Subject: [PATCH] #75 changed job-history job state background css classes to match with job summary icon background css --- app/job/job-history/job-history.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/job/job-history/job-history.component.ts b/app/job/job-history/job-history.component.ts index 1d2b77a..e846825 100644 --- a/app/job/job-history/job-history.component.ts +++ b/app/job/job-history/job-history.component.ts @@ -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; }