From a6b5178c7295be4525ee0f607e42f72a12a2e3d6 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Wed, 15 Mar 2017 15:45:26 +0000
Subject: [PATCH] #3527 fix - Changes on licenses list and routes
---
securis/src/main/webapp/src/app/resources/packs.ts | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/securis/src/main/webapp/src/app/resources/packs.ts b/securis/src/main/webapp/src/app/resources/packs.ts
index d022dff..6da7c06 100644
--- a/securis/src/main/webapp/src/app/resources/packs.ts
+++ b/securis/src/main/webapp/src/app/resources/packs.ts
@@ -82,7 +82,11 @@
}
getStatusName(statusCode: string): string {
- return this.$L.get(`pack.status.${statusCode}`, this.$L.get('Unknown'));
+ return this.$L.get(`pack.status.${statusCode}`, this.$L.get('Unknown'));
+ }
+
+ getStatusColor(statusCode: string): string {
+ return COLORS_BY_STATUS[statusCode] || '#cccccc';
}
}
--
Gitblit v1.3.2