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

hide status informations from entity-details

parent 2a99dff8
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ export default Ember.Component.extend({ ...@@ -9,7 +9,7 @@ export default Ember.Component.extend({
const entity = this.get('entity'); const entity = this.get('entity');
entity.eachAttribute(property => { entity.eachAttribute(property => {
// do not show internal relations, also timeSeries gets plotted // do not show internal relations, also timeSeries gets plotted
if(property.indexOf('Id') < 0 && property !== 'timeSeries') { if(property.indexOf('Id') < 0 && property !== 'timeSeries' && property !== 'statusInformations') {
properties.push({key: property, value: entity.get(property)}); properties.push({key: property, value: entity.get(property)});
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment