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

Unified Diff: Tools/GardeningServer/ui/ct-failure-card.html

Issue 485253004: [Sheriff-o-matic] Remove race condition on the commit list. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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-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() {

Powered by Google App Engine
This is Rietveld 408576698