This commit is contained in:
Girish Ramakrishnan
2019-09-23 09:56:31 -07:00
parent 077ce5b521
commit acc20af2d9
+2 -2
View File
@@ -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) {