Index: Tools/GardeningServer/ui/ct-failure-card.html |
diff --git a/Tools/GardeningServer/ui/ct-failure-card.html b/Tools/GardeningServer/ui/ct-failure-card.html |
index 5cb2a2c86d275615bf8a92a37b1a22d021cedabb..0509de48bded35534f9e8eec594fdd2da7d3efeb 100644 |
--- a/Tools/GardeningServer/ui/ct-failure-card.html |
+++ b/Tools/GardeningServer/ui/ct-failure-card.html |
@@ -11,7 +11,7 @@ found in the LICENSE file. |
<link rel="import" href="../bower_components/paper-dialog/paper-dialog-transition.html"> |
<link rel="import" href="../bower_components/paper-input/paper-input.html"> |
-<polymer-element name="ct-failure-card" attributes="group commits tree bug"> |
+<polymer-element name="ct-failure-card" attributes="group commitLog tree bug"> |
<template> |
<style> |
:host { |
@@ -96,7 +96,7 @@ found in the LICENSE file. |
<script> |
Polymer({ |
group: null, |
- commits: null, |
+ commitLog: null, |
tree: '', |
examine: function() { |
@@ -114,7 +114,7 @@ found in the LICENSE file. |
_commits: function() { |
if (!this.group) |
return undefined; |
- return this.group.commitList(this.commits); |
+ return this.group.commitList(this.commitLog); |
ojan
2014/08/20 18:47:51
Can you add a test that would have broken in the o
Mathieu
2014/08/21 14:08:21
Done.
|
}, |
linkBug: function() { |