diff --git a/app/components/architecture-visualisation-cytoscape/style.js b/app/components/architecture-visualisation-cytoscape/style.js index 4598bd7861dd2a6652454b9bef4385c2b5920d74..c3e918e12344f01763d17db15d4ba608f12b81f5 100644 --- a/app/components/architecture-visualisation-cytoscape/style.js +++ b/app/components/architecture-visualisation-cytoscape/style.js @@ -92,10 +92,10 @@ edge { curve-style: bezier; /* supports arrows */ } -.warning { +.WARNING { background-color: yellow; } -.fail { +.FAIL { background-color: red; } diff --git a/app/models/measurable.js b/app/models/measurable.js index d3dc7b972b4595bbaed55fe38946de898b53181d..24f412367859aea0f527c34a030d20a8eb1cbe0d 100644 --- a/app/models/measurable.js +++ b/app/models/measurable.js @@ -4,7 +4,7 @@ import attr from 'ember-data/attr'; const Model = BaseEntity.extend({ timeSeries: attr(), statusInformations: attr(), - status: attr('string') + status: attr('string') // NORMAL, WARNING, FAIL }); export default Model;