From 44302c9c12c161dc31b9baf6470be072b37ee94e Mon Sep 17 00:00:00 2001 From: Newnius Date: Mon, 25 May 2020 19:39:04 +0800 Subject: [PATCH] update color --- static/job.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/job.js b/static/job.js index 47eb388..bd03368 100755 --- a/static/job.js +++ b/static/job.js @@ -229,15 +229,15 @@ var statusFormatter = function (status) { case 0: return 'Submitted'; case 1: - return 'Starting'; + return 'Starting'; case 2: - return 'Running'; + return 'Running'; case 3: return 'Stopped'; case 4: return 'Finished'; case 5: - return 'Failed'; + return 'Failed'; } return 'Unknown(' + status + ')'; };