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

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

Issue 2959833002: config_service: add last import validation and tests (Closed)
Patch Set: Add test files. Created 3 years, 6 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
Index: appengine/config_service/ui/src/config-ui/config-ui.html
diff --git a/appengine/config_service/ui/src/config-ui/config-ui.html b/appengine/config_service/ui/src/config-ui/config-ui.html
index b85b9edea26c45e227b84375c1fbd40085abe3dc..c75f47430c792878e6951e9a1e5e23883bead0e2 100644
--- a/appengine/config_service/ui/src/config-ui/config-ui.html
+++ b/appengine/config_service/ui/src/config-ui/config-ui.html
@@ -69,16 +69,18 @@
</div>
<div hidden$="[[!serviceActive]]">
- <config-set category="services"
- config-set-name="{{serviceData.serviceName}}"
- route="{{serviceTail}}"></config-set>
- </div>
+ <config-set category="services"
+ name="{{serviceData.serviceName}}"
+ route="{{serviceTail}}"
+ front-page-is-active="{{frontPageActive}}"></config-set>
+ </div>
<div hidden$="[[!projectActive]]">
- <config-set category="projects"
- config-set-name="{{projectData.projectName}}"
- route="{{projectTail}}"></config-set>
- </div>
+ <config-set category="projects"
+ name="{{projectData.projectName}}"
+ route="{{projectTail}}"
+ front-page-is-active="{{frontPageActive}}"></config-set>
+ </div>
</template>

Powered by Google App Engine
This is Rietveld 408576698