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

Side by Side Diff: appengine/config_service/ui/src/config-ui/config-set.html

Issue 2990993002: config_service: change icon for force refresh to make it less ambiguous (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2017 The LUCI Authors. All rights reserved. 2 Copyright 2017 The LUCI Authors. All rights reserved.
3 Use of this source code is governed under the Apache License, Version 2.0 3 Use of this source code is governed under the Apache License, Version 2.0
4 that can be found in the LICENSE file. 4 that can be found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="config-file-card.html"> 7 <link rel="import" href="config-file-card.html">
8 <link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html"> 8 <link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html">
9 <link rel="import" href="../../bower_components/iron-icons/iron-icons.html"> 9 <link rel="import" href="../../bower_components/iron-icons/iron-icons.html">
10 <link rel="import" href="../../bower_components/paper-item/paper-item.html"> 10 <link rel="import" href="../../bower_components/paper-item/paper-item.html">
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 <template is="dom-if" if="[[_not(lastImportAttempt.success)]]"> 97 <template is="dom-if" if="[[_not(lastImportAttempt.success)]]">
98 <iron-icon id="invalid" icon="icons:warning" class="paper-red"></i ron-icon> 98 <iron-icon id="invalid" icon="icons:warning" class="paper-red"></i ron-icon>
99 </template> 99 </template>
100 </template> 100 </template>
101 <template is="dom-if" if="[[_not(lastImportAttempt)]]"> 101 <template is="dom-if" if="[[_not(lastImportAttempt)]]">
102 <iron-icon icon="icons:help" class="paper-grey"></iron-icon> 102 <iron-icon icon="icons:help" class="paper-grey"></iron-icon>
103 </template> 103 </template>
104 </template> 104 </template>
105 <template is="dom-if" if="[[auth_headers]]"> 105 <template is="dom-if" if="[[auth_headers]]">
106 <paper-icon-button id="force-refresh" 106 <paper-icon-button id="force-refresh"
107 icon="icons:refresh" 107 icon="icons:file-download"
108 on-tap="_forceRefresh"> 108 on-tap="_forceRefresh">
109 </paper-icon-button> 109 </paper-icon-button>
110 <paper-tooltip for="force-refresh" offset="0"> 110 <paper-tooltip for="force-refresh" offset="0">
111 Re-import the config-set from the repository. 111 Re-import the config-set from the repository.
112 </paper-tooltip> 112 </paper-tooltip>
113 </template> 113 </template>
114 </div> 114 </div>
115 <div class="category"> 115 <div class="category">
116 <p>[[_formatCategory(category)]]</p> 116 <p>[[_formatCategory(category)]]</p>
117 <template is="dom-if" if="[[_not(isLoading)]]"> 117 <template is="dom-if" if="[[_not(isLoading)]]">
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 this.errorMessage = "Internal server error."; 290 this.errorMessage = "Internal server error.";
291 } else { 291 } else {
292 this.errorMessage = "Error occured. Try again later."; 292 this.errorMessage = "Error occured. Try again later.";
293 } 293 }
294 this.fire('fetchError'); 294 this.fire('fetchError');
295 } 295 }
296 296
297 }); 297 });
298 </script> 298 </script>
299 </dom-module> 299 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698