From e84e5423099451b50b03b0b45d9f6dfd4f07cbf5 Mon Sep 17 00:00:00 2001 From: Anton Romanov Date: Thu, 22 Nov 2018 21:48:36 +0400 Subject: [PATCH] fix colors --- src/main/resources/public/js/papers.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/resources/public/js/papers.js b/src/main/resources/public/js/papers.js index e6d1c5d..e8cc7ed 100644 --- a/src/main/resources/public/js/papers.js +++ b/src/main/resources/public/js/papers.js @@ -67,10 +67,12 @@ function getPaperStatusClass(status) { return "text-draft" case 'ON_PREPARATION': return "text-primary"; + case 'ON_REVIEW': + return "text-primary"; case 'COMPLETED': return "text-success"; case 'ATTENTION': - return "text-warning"; + return "text-warning"; case 'FAILED': return "text-failed"; default: