diff --git a/src/views/graphs.js b/src/views/graphs.js index abd1fc9f7..b722097fc 100644 --- a/src/views/graphs.js +++ b/src/views/graphs.js @@ -127,7 +127,8 @@ angular.module('Application').controller('GraphsController', ['$scope', '$locati const apps = Object.keys(result.apps).filter(function (appId) { return result.apps[appId] === disk.filesystem; }); apps.forEach(function (appId) { - disk.contains.push({ app: Client.getCachedAppSync(appId), id: appId, usage: 0 }); + var app = Client.getCachedAppSync(appId); + disk.contains.push({ app: app, label: app.label || app.fqdn, id: appId, usage: 0 }); }); });