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

Unified Diff: dashboard/dashboard/elements/alerts-table.html

Issue 2620693002: Remove <label> wrappers from alerts-table. (Closed)
Patch Set: Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/alerts-table.html
diff --git a/dashboard/dashboard/elements/alerts-table.html b/dashboard/dashboard/elements/alerts-table.html
index 5531fb4a9a998b01585b3eb032f3c7df555dc311..cd621e2363b86bac4df06e5548acdd0228ee7120 100644
--- a/dashboard/dashboard/elements/alerts-table.html
+++ b/dashboard/dashboard/elements/alerts-table.html
@@ -377,15 +377,15 @@ found in the LICENSE file.
<td class="revision_range">
<revision-range start="{{item.start_revision}}" end="{{item.end_revision}}"></revision-range>
</td>
- <td class="master"><label>{{item.master}}</label></td>
- <td class="bot"><label>{{item.bot}}</label></td>
- <td class="testsuite"><label>{{item.testsuite}}</label></td>
- <td class="test"><label>{{item.test}}</label></td>
+ <td class="master">{{item.master}}</td>
+ <td class="bot">{{item.bot}}</td>
+ <td class="testsuite">{{item.testsuite}}</td>
+ <td class="test">{{item.test}}</td>
<template is="dom-repeat" items="{{extraColumns}}" as="column"
index-as="colnum">
<td class$="{{column.key}}" hidden$={{hideUnitsColumn(column.key)}}>
- <label>{{computeExtraColumnValue(item, column.key)}}</label>
+ {{computeExtraColumnValue(item, column.key)}}
</td>
</template>
</tr>
« 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