| Index: appengine/config_service/ui/src/config-ui/front-page.html
|
| diff --git a/appengine/config_service/ui/src/config-ui/front-page.html b/appengine/config_service/ui/src/config-ui/front-page.html
|
| index 409170e640947213c2710c35774abf9bb3fac128..a2f4597c8311ec005c582867a48fe9e2b65b54da 100644
|
| --- a/appengine/config_service/ui/src/config-ui/front-page.html
|
| +++ b/appengine/config_service/ui/src/config-ui/front-page.html
|
| @@ -72,7 +72,8 @@
|
| </iron-ajax>
|
|
|
| <div class="search-bar">
|
| - <paper-search-bar
|
| + <paper-search-bar
|
| + id = "searchBar"
|
| query="{{query}}"
|
| hide-filter-button="true"></paper-search-bar>
|
| </div>
|
| @@ -149,6 +150,9 @@
|
| } else {
|
| this.$.requestConfigs.generateRequest();
|
| }
|
| + document.addEventListener('WebComponentsReady', function() {
|
| + this.$['searchBar'].focus();
|
| + }.bind(this));
|
| },
|
|
|
| _onSignIn: function() {
|
|
|