diff --git a/src/js/client.js b/src/js/client.js index 93999b4ab..4677673c9 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -3619,6 +3619,8 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout return 'Automatic updates ' + appName('of', app) + ' were ' + (data.enableAutomaticUpdate ? 'enabled' : 'disabled'); } else if ('reverseProxyConfig' in data) { return 'Reverse proxy configuration ' + appName('of', app) + ' was updated'; + } else if ('upstreamUri' in data) { + return 'Upstream URI ' + appName('of', app) + ' was updated'; } else if ('cert' in data) { if (data.cert) { return 'Custom certificate was set ' + appName('for', app); @@ -3657,7 +3659,7 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout } } - return appName('', app, 'App') + 'was re-configured'; + return appName('', app, 'App ') + 'was re-configured'; } case ACTION_APP_INSTALL: