securis/src/main/webapp/src/app/resources/packs.ts
.. .. @@ -82,7 +82,11 @@ 82 82 } 83 83 84 84 getStatusName(statusCode: string): string { 85 - return this.$L.get(`pack.status.${statusCode}`, this.$L.get('Unknown'));85 + return this.$L.get(`pack.status.${statusCode}`, this.$L.get('Unknown'));86 + }87 +88 + getStatusColor(statusCode: string): string {89 + return COLORS_BY_STATUS[statusCode] || '#cccccc';86 90 } 87 91 88 92 }