From 3c1ecd9e649fdee54cfe37da76b4671370b1adca Mon Sep 17 00:00:00 2001 From: Mathis Neumann <mathis@simpletechs.net> Date: Thu, 14 Jul 2016 17:00:50 +0200 Subject: [PATCH] hide status informations from entity-details --- app/components/entity-details.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/entity-details.js b/app/components/entity-details.js index b59de42..8514713 100644 --- a/app/components/entity-details.js +++ b/app/components/entity-details.js @@ -9,7 +9,7 @@ export default Ember.Component.extend({ const entity = this.get('entity'); entity.eachAttribute(property => { // 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)}); } }); -- GitLab