diff --git a/src/js/index.js b/src/js/index.js index 14d047e57..9dd6cdf7d 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -597,11 +597,11 @@ app.filter('eventLogDetails', function() { } } else if (data.location) { if (data.location !== data.app.location || data.domain !== data.app.domain) { - return 'Location of ' + name + ' was set to ' + data.location + '.' + data.domain; + return 'Location of ' + name + ' was changed to ' + data.location + '.' + data.domain; } else if (!angular.equals(data.alternateDomains, data.app.alternateDomains)) { return 'Alternate domains of ' + name + ' was set to ' + q(data.alternateDomains.join(',')); } else if (!angular.equals(data.portBindings, data.app.portBindings)) { - return 'Port bindings ' + name + ' was set'; + return 'Port bindings of ' + name + ' was changed'; } } else if ('dataDir' in data) { if (data.dataDir) {