Fix upstreamUri event

This commit is contained in:
Girish Ramakrishnan
2022-09-29 19:26:22 +02:00
parent e885fd0ac5
commit 2dafa771f2

View File

@@ -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: