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

Unified Diff: Tools/GardeningServer/ui/ct-sheriff-o-matic.html

Issue 476903004: [sheriff-o-matic]: Basic trooper display for sheriff-o-matic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
Index: Tools/GardeningServer/ui/ct-sheriff-o-matic.html
diff --git a/Tools/GardeningServer/ui/ct-sheriff-o-matic.html b/Tools/GardeningServer/ui/ct-sheriff-o-matic.html
index a0b85dfe28d782433e120672b25c38ae7b37ea5e..5090bdc0cead1870e770552dfe145ec265a83fdd 100644
--- a/Tools/GardeningServer/ui/ct-sheriff-o-matic.html
+++ b/Tools/GardeningServer/ui/ct-sheriff-o-matic.html
@@ -112,12 +112,14 @@ found in the LICENSE file.
},
onExamine: function(event) {
+ var dataToExamine = event.detail.dataToExamine();
window.history.pushState({
- currentFailures: event.detail.failures,
+ currentFailures: dataToExamine,
selected: 1,
});
- this.currentFailures = event.detail.failures;
+
+ this.currentFailures = dataToExamine;
this.selected = 1;
},

Powered by Google App Engine
This is Rietveld 408576698