Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4904)

Unified Diff: appengine/config_service/ui/src/config-ui/config-set.html

Issue 2990713002: config_service: change error message for error 403. (Closed)
Patch Set: Enable shadow DOM for testing Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | appengine/config_service/ui/test/config-ui/config-set_test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « no previous file | appengine/config_service/ui/test/config-ui/config-set_test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698