| 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 2ae788f3a95a8e3d212033fa3b0c3a6efb9e8c56..ab6bb3c5657e4b0e25e412e6c0bb468240745ca6 100644
|
| --- a/appengine/config_service/ui/src/config-ui/config-set.html
|
| +++ b/appengine/config_service/ui/src/config-ui/config-set.html
|
| @@ -11,6 +11,7 @@
|
| <link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html">
|
| <link rel="import" href="../../bower_components/polymer/polymer.html">
|
| <link rel="import" href="../../bower_components/iron-icons/maps-icons.html">
|
| +<link rel="import" href="../../bower_components/paper-tooltip/paper-tooltip.html">
|
|
|
| <dom-module id="config-set">
|
| <template>
|
| @@ -97,7 +98,13 @@
|
| </template>
|
| </template>
|
| <template is="dom-if" if="[[auth_headers]]">
|
| - <iron-icon icon="icons:refresh" on-tap="_forceRefresh"></iron-icon>
|
| + <paper-icon-button id="force-refresh"
|
| + icon="icons:refresh"
|
| + on-tap="_forceRefresh">
|
| + </paper-icon-button>
|
| + <paper-tooltip for="force-refresh" offset="0">
|
| + Force the config refresh.
|
| + </paper-tooltip>
|
| </template>
|
| </div>
|
| <div class="category">
|
| @@ -107,6 +114,9 @@
|
| <template is="dom-if" if="[[_not(lastImportAttempt.success)]]">
|
| Last import attempt failed: [[lastImportAttempt.message]]
|
| </template>
|
| + <template is="dom-if" if="[[lastImportAttempt.success]]">
|
| + Last import succeeded.
|
| + </template>
|
| </template>
|
| <template is="dom-if" if="[[_not(lastImportAttempt)]]">
|
| Last import attempt info not available.
|
|
|