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

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

Issue 2991013002: config_service: Added revision and timestamp to config-set-cards and config-set pages (Closed)
Patch Set: Refactored test to give each function its own suite 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
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 92ed592a69b0d569a3d12d3d9c8f3f3382a79b74..eb9175eea49c0a537e71737ee3f5bc5c13cbc7d6 100644
--- a/appengine/config_service/ui/src/config-ui/config-ui.html
+++ b/appengine/config_service/ui/src/config-ui/config-ui.html
@@ -14,6 +14,7 @@
<link rel="import" href="../../bower_components/app-layout/app-toolbar/app-toolbar.html">
<link rel="import" href="../../common/auth-signin.html">
+<link rel="import" href="../../common/common-behaviors.html">
<link rel="import" href="config-set.html">
<link rel="import" href="front-page.html">
@@ -84,7 +85,7 @@
signed_in="{{signed_in}}">
</auth-signin>
</template>
- <template is="dom-if" if="[[!client_id]]">
+ <template is="dom-if" if="[[_not(client_id)]]">
<div class="right">No OAauth client id found.</div>
</template>
</app-toolbar>
@@ -140,6 +141,8 @@
Polymer({
is: 'config-ui',
+ behaviors: [ConfigUIBehaviors.CommonBehavior],
+
properties: {
client_id: {
type: String,

Powered by Google App Engine
This is Rietveld 408576698