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

Unified Diff: dashboard/dashboard/elements/speed-releasing-table.html

Issue 2658643005: Added report URLs to the dashboard. (Closed)
Patch Set: resolving merge conficts 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dashboard/dashboard/elements/speed-releasing-table-test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/speed-releasing-table.html
diff --git a/dashboard/dashboard/elements/speed-releasing-table.html b/dashboard/dashboard/elements/speed-releasing-table.html
index 75b8d6b3c611c464cd7a38bc3578da60f1b5a2c9..73ab3d483f3c797482319df0c7afc7dd0deecc9b 100644
--- a/dashboard/dashboard/elements/speed-releasing-table.html
+++ b/dashboard/dashboard/elements/speed-releasing-table.html
@@ -79,7 +79,11 @@ found in the LICENSE file.
{{getCategory(test)}}
</th>
</template>
- <th>{{getPrettyTestName(test)}}</th>
+ <th>
+ <a href="/report{{getURL(bot, test)}}" target="_blank">
+ {{getPrettyTestName(test)}}
+ </a>
+ </th>
<template is="dom-repeat" items="{{tableConfig.revisions}}"
as="rev">
<td>{{getValue(rev, bot, test)}}</td>
@@ -193,6 +197,10 @@ found in the LICENSE file.
return false;
},
+ getURL: function(bot, test) {
+ return this.tableConfig.urlMap[bot + '/' + test];
+ },
+
ready: function() {
var params = {};
var revA = uri.getParameter('revA');
@@ -220,6 +228,7 @@ found in the LICENSE file.
this.tableConfig.revisions = response['revisions'];
this.tableConfig.units = response['units'];
this.tableConfig.categories = response['categories'];
+ this.tableConfig.urlMap = response['urls'];
this.tableConfig.displayRevisions = response['display_revisions'];
this.loading = false;
}.bind(this),
« no previous file with comments | « no previous file | dashboard/dashboard/elements/speed-releasing-table-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698