| 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 6b8fbdb801f4c3fb6e06d868c619518b9a7beb07..31b657287488ec8f190ee54c38c5f5a1a2ae97d6 100644
|
| --- a/appengine/config_service/ui/src/config-ui/config-ui.html
|
| +++ b/appengine/config_service/ui/src/config-ui/config-ui.html
|
| @@ -70,6 +70,7 @@
|
| class="right"
|
| client_id="[[client_id]]"
|
| auth_headers="{{auth_headers}}"
|
| + initialized="{{initialized}}"
|
| profile="{{profile}}"
|
| signed_in="{{signed_in}}">
|
| </auth-signin>
|
| @@ -98,7 +99,9 @@
|
| active="{{frontPageActive}}"></app-route>
|
|
|
| <template is="dom-if" if="[[frontPageActive]]">
|
| - <front-page auth_headers="[[auth_headers]]"></front-page>
|
| + <front-page auth_headers="[[auth_headers]]"
|
| + initialized="[[initialized]]"
|
| + signed_in="[[signed_in]]"></front-page>
|
| </template>
|
|
|
| <template is="dom-if" if="[[serviceActive]]" restamp="true">
|
| @@ -106,7 +109,9 @@
|
| name="[[serviceData.serviceName]]"
|
| route="[[serviceTail]]"
|
| auth_headers="[[auth_headers]]"
|
| - front-page-is-active="[[frontPageActive]]"></config-set>
|
| + initialized="[[initialized]]"
|
| + front-page-is-active="[[frontPageActive]]"
|
| + profile="[[profile]]"></config-set>
|
| </template>
|
|
|
| <template is="dom-if" if="[[projectActive]]" restamp="true">
|
| @@ -114,7 +119,9 @@
|
| name="[[projectData.projectName]]"
|
| route="[[projectTail]]"
|
| auth_headers="[[auth_headers]]"
|
| - front-page-is-active="[[frontPageActive]]"></config-set>
|
| + initialized="[[initialized]]"
|
| + front-page-is-active="[[frontPageActive]]"
|
| + profile="[[profile]]"></config-set>
|
| </template>
|
| </app-header-layout>
|
| </app-drawer-layout>
|
|
|