graphs: add label to app tool tips
This commit is contained in:
@@ -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 });
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user