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

Side by Side Diff: dashboard/dashboard/elements/alerts-table.html

Issue 2687933002: Dashboard - Clicking revisions leads to group_reports. (Closed)
Patch Set: Created 3 years, 10 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 | dashboard/dashboard/elements/revision-range.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright 2016 The Chromium Authors. All rights reserved. 3 Copyright 2016 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <link rel="import" href="/components/iron-icon/iron-icon.html"> 8 <link rel="import" href="/components/iron-icon/iron-icon.html">
9 <link rel="import" href="/components/iron-icons/iron-icons.html"> 9 <link rel="import" href="/components/iron-icons/iron-icons.html">
10 <link rel="import" href="/components/paper-button/paper-button.html"> 10 <link rel="import" href="/components/paper-button/paper-button.html">
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 key="{{item.key}}" 369 key="{{item.key}}"
370 recovered$="{{item.recovered}}" 370 recovered$="{{item.recovered}}"
371 xsrf-token="{{xsrfToken}}" 371 xsrf-token="{{xsrfToken}}"
372 on-untriaged="onUntriaged"> 372 on-untriaged="onUntriaged">
373 </bug-info-span> 373 </bug-info-span>
374 <bisect-status hidden$="{{!item.bug_id}}" 374 <bisect-status hidden$="{{!item.bug_id}}"
375 status="{{item.bisect_status}}"> 375 status="{{item.bisect_status}}">
376 </bisect-status> 376 </bisect-status>
377 </td> 377 </td>
378 <td class="revision_range"> 378 <td class="revision_range">
379 <revision-range start="{{item.start_revision}}" end="{{item.end_revi sion}}"></revision-range> 379 <revision-range start="{{item.start_revision}}" end="{{item.end_revi sion}}" alert-key="{{item.key}}"></revision-range>
380 </td> 380 </td>
381 <td class="master">{{item.master}}</td> 381 <td class="master">{{item.master}}</td>
382 <td class="bot">{{item.bot}}</td> 382 <td class="bot">{{item.bot}}</td>
383 <td class="testsuite">{{item.testsuite}}</td> 383 <td class="testsuite">{{item.testsuite}}</td>
384 <td class="test">{{item.test}}</td> 384 <td class="test">{{item.test}}</td>
385 385
386 <template is="dom-repeat" items="{{extraColumns}}" as="column" 386 <template is="dom-repeat" items="{{extraColumns}}" as="column"
387 index-as="colnum"> 387 index-as="colnum">
388 <td class$="{{column.key}}" hidden$={{hideUnitsColumn(column.key)}}> 388 <td class$="{{column.key}}" hidden$={{hideUnitsColumn(column.key)}}>
389 {{computeExtraColumnValue(item, column.key)}} 389 {{computeExtraColumnValue(item, column.key)}}
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1162 end: alert.end_revision 1162 end: alert.end_revision
1163 }; 1163 };
1164 1164
1165 return findRangeIntersection( 1165 return findRangeIntersection(
1166 commonRevisionRange, alertRevisionRange) != null; 1166 commonRevisionRange, alertRevisionRange) != null;
1167 } 1167 }
1168 }); 1168 });
1169 })(); 1169 })();
1170 </script> 1170 </script>
1171 </dom-module> 1171 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | dashboard/dashboard/elements/revision-range.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698