diff --git a/app/components/entity-details.js b/app/components/entity-details.js
index de4c1176d791e56294002ed52ff56af714eb1a43..b59de4291245371da3a424d076414eef6ca62f11 100644
--- a/app/components/entity-details.js
+++ b/app/components/entity-details.js
@@ -8,7 +8,8 @@ export default Ember.Component.extend({
         const properties = [];
         const entity = this.get('entity');
         entity.eachAttribute(property => {
-            if(property.indexOf('Id') < 0) {
+            // do not show internal relations, also timeSeries gets plotted
+            if(property.indexOf('Id') < 0 && property !== 'timeSeries') {
                 properties.push({key: property, value: entity.get(property)});
             }
         });