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

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

Issue 2987043002: config_service: changing URL manually now reloads list of files (Closed)
Patch Set: 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 | no next file » | 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 f442d03437c8394bfa2e31a3158507d341092cd5..2a60379852e0d7f476c7cb4a16dc1f20ea5f7d2b 100644
--- a/appengine/config_service/ui/src/config-ui/config-set.html
+++ b/appengine/config_service/ui/src/config-ui/config-set.html
@@ -211,6 +211,11 @@
value: null
},
+ route: {
+ type: Object,
+ observer: '_routeChanged'
+ },
+
errorMessage: {
type: String,
value: null
@@ -292,6 +297,11 @@
this.errorMessage = "Error occured. Try again later.";
}
this.fire('fetchError');
+ },
+
+ _routeChanged: function() {
+ this.isLoading = true;
+ this.$.requestConfigs.generateRequest();
}
});
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698