diff --git a/app/components/entity-details.js b/app/components/entity-details.js
index b59de4291245371da3a424d076414eef6ca62f11..8514713fc76d5ed3924fa8758e3ce44b45b63e61 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)});
             }
         });