Chromium Code Reviews| Index: appengine/config_service/ui/src/config-ui/config-set.html |
| diff --git a/appengine/config_service/ui/src/config-ui/config-set.html b/appengine/config_service/ui/src/config-ui/config-set.html |
| index 2b99e1288514be3795f07f9f873b03cd62ebdd4d..f86e64df786a5cdc677bc38035fd40436cd37375 100644 |
| --- a/appengine/config_service/ui/src/config-ui/config-set.html |
| +++ b/appengine/config_service/ui/src/config-ui/config-set.html |
| @@ -274,8 +274,8 @@ |
| var error = parseInt(event.detail.error.message.match(/\d+/g)); |
| this.isLoading = false; |
| if (error === 403) { |
| - this.errorMessage = "Authorization required to view this config set. " + |
| - "Please sign in."; |
| + this.errorMessage = "Access denied. If you are not signed in, please do so. " + |
| + "Otherwise, try again later."; |
|
Sergey Berezin
2017/07/26 18:46:42
"Access denied" is probably the only thing that we
|
| } else if (500 <= error && error < 600) { |
| this.errorMessage = "Internal server error."; |
| } else { |