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

Side by Side Diff: go/src/infra/appengine/sheriff-o-matic/elements/som-alert-item.html

Issue 2085553006: SOM: Removed alert-body div. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Removed the content too Created 4 years, 6 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 <link rel="import" href="/bower_components/polymer/polymer.html"> 1 <link rel="import" href="/bower_components/polymer/polymer.html">
2 2
3 <link rel="import" href="/bower_components/iron-icon/iron-icon.html"> 3 <link rel="import" href="/bower_components/iron-icon/iron-icon.html">
4 <link rel="import" href="/bower_components/iron-icons/iron-icons.html"> 4 <link rel="import" href="/bower_components/iron-icons/iron-icons.html">
5 <link rel="import" href="/bower_components/paper-button/paper-button.html"> 5 <link rel="import" href="/bower_components/paper-button/paper-button.html">
6 <link rel="import" href="/bower_components/paper-icon-button/paper-icon-button.h tml"> 6 <link rel="import" href="/bower_components/paper-icon-button/paper-icon-button.h tml">
7 <link rel="import" href="/elements/som-extension-build-failure.html"> 7 <link rel="import" href="/elements/som-extension-build-failure.html">
8 8
9 <dom-module id="som-alert-item"> 9 <dom-module id="som-alert-item">
10 <template> 10 <template>
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <a target="_blank" href$="[[bug]]">[[_bugLabel(bug)]]</a> 68 <a target="_blank" href$="[[bug]]">[[_bugLabel(bug)]]</a>
69 <paper-button id="remove[[index]]" on-tap="_removeBug" raised> Remove</paper-button> 69 <paper-button id="remove[[index]]" on-tap="_removeBug" raised> Remove</paper-button>
70 </template> 70 </template>
71 </div> 71 </div>
72 </div> 72 </div>
73 <div class="alert-times"> 73 <div class="alert-times">
74 [[_duration]] 74 [[_duration]]
75 </div> 75 </div>
76 </div> 76 </div>
77 <hr/> 77 <hr/>
78 <div class="alert-body">[[alert.body]]</div>
79 <div class="alert-expanded layout horizontal center"> 78 <div class="alert-expanded layout horizontal center">
80 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a> 79 <a href$="[[tree]]/examine/[[alert.key]]">Examine</a>
81 <paper-button class="horizontal layout center" on-tap="_fileBug" alt ="Link a bug" raised noink> 80 <paper-button class="horizontal layout center" on-tap="_fileBug" alt ="Link a bug" raised noink>
82 <iron-icon class="file-bug-icon" icon="bug-report"></iron-icon> 81 <iron-icon class="file-bug-icon" icon="bug-report"></iron-icon>
83 Link Bug 82 Link Bug
84 </paper-button> 83 </paper-button>
85 <paper-button class="horizontal layout center" id="snooze" icon="[[_ snoozeIcon]]" title$="[[_snoozeText]]" on-tap="_snooze" raised noink> 84 <paper-button class="horizontal layout center" id="snooze" icon="[[_ snoozeIcon]]" title$="[[_snoozeText]]" on-tap="_snooze" raised noink>
86 <iron-icon class="snooze-icon" icon="[[_snoozeIcon]]"> 85 <iron-icon class="snooze-icon" icon="[[_snoozeIcon]]">
87 </iron-icon> 86 </iron-icon>
88 [[_snoozeText]] 87 [[_snoozeText]]
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 change: {'snoozeTime': true}, 231 change: {'snoozeTime': true},
233 }); 232 });
234 } else { 233 } else {
235 this.fire('snooze'); 234 this.fire('snooze');
236 } 235 }
237 }, 236 },
238 }); 237 });
239 })(); 238 })();
240 </script> 239 </script>
241 </dom-module> 240 </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