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 787bbea79ab0d1e742b3694defb80b574b82c792..29118e00abfdd57b04c024b0d10ad8070a13a094 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; |
}, |