diff --git a/dashboard/src/js/client.js b/dashboard/src/js/client.js index 1132292db..281d86b32 100644 --- a/dashboard/src/js/client.js +++ b/dashboard/src/js/client.js @@ -3703,7 +3703,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout } else if (data.icon) { return 'Icon ' + appName('of', app) + ' was changed'; } else if (data.memoryLimit) { - return 'Memory limit ' + appName('of', app) + ' was set to ' + data.memoryLimit; + return 'Memory limit ' + appName('of', app) + ' was set to ' + prettyBinarySize(data.memoryLimit); } else if (data.cpuShares) { return 'CPU shares ' + appName('of', app) + ' was set to ' + Math.round((data.cpuShares * 100)/1024) + '%'; } else if (data.cpuQuota) {