Skip to content
Snippets Groups Projects
Commit f1fae1a9 authored by Mathis Neumann's avatar Mathis Neumann
Browse files

synchronize status property with server data structure

parent d7883a8d
No related branches found
No related tags found
No related merge requests found
......@@ -92,10 +92,10 @@ edge {
curve-style: bezier; /* supports arrows */
}
.warning {
.WARNING {
background-color: yellow;
}
.fail {
.FAIL {
background-color: red;
}
......
......@@ -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;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment