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

Unified Diff: golden/frontend/res/imp/ignore-summary-sk.html

Issue 2220573003: Add count of exclusively covered digests to each ignore rule (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 4 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: golden/frontend/res/imp/ignore-summary-sk.html
diff --git a/golden/frontend/res/imp/ignore-summary-sk.html b/golden/frontend/res/imp/ignore-summary-sk.html
index 2c8213baa4f810674be85aaad34cf8a4f1aa73bf..83788bf41c27b6c6afeae08ecc9b470cfabfb660 100644
--- a/golden/frontend/res/imp/ignore-summary-sk.html
+++ b/golden/frontend/res/imp/ignore-summary-sk.html
@@ -3,7 +3,7 @@
Displays a summary of an ignore rule.
Attributes:
- None.
+ None.
Events:
'delete'
@@ -16,8 +16,8 @@ Displays a summary of an ignore rule.
pressed. The state of the ignore rule will be included in e.detail.
Methods:
- None.
-
+ None.
+
-->
<link rel="import" href="bower_components/iron-icons/iron-icons.html">
@@ -64,6 +64,10 @@ Displays a summary of an ignore rule.
width: 6em;
color: #A6761D;
}
+ #excount {
+ width: 6em;
+ color: #A6761D;
+ }
paper-button {
min-width: 2em;
}
@@ -74,6 +78,7 @@ Displays a summary of an ignore rule.
<pre id="query"><a href$="{{_queryHref(value.query)}}">{{_splitAmp(value.query)}}</a></pre>
<div id="note">{{value.note}}</div>
<div id="count">{{value.count}}</div>
+ <div id="excount">{{value.exclusiveCount}}</div>
<paper-button id="edit" title="Edit"><iron-icon icon="create"></iron-icon></paper-button>
<paper-button id="delete" title="Delete"><iron-icon icon="delete"></iron-icon></paper-button>
</template>
@@ -92,17 +97,17 @@ Displays a summary of an ignore rule.
ready: function () {
this.listen(this.$.edit, 'click', "_handleEditClick");
this.listen(this.$.delete, 'click', "_handleDeleteClick");
- },
+ },
_handleEditClick: function() {
- this.fire('edit', this.value);
+ this.fire('edit', this.value);
},
_handleDeleteClick: function() {
this.fire('delete', this.value);
},
- // Make an alias to split by ampersand.
+ // Make an alias to split by ampersand.
_splitAmp: sk.query.splitAmp,
_humanDiffDate: function (s) {
@@ -117,4 +122,3 @@ Displays a summary of an ignore rule.
}());
</script>
</dom-module>
-
« no previous file with comments | « no previous file | golden/frontend/res/imp/ignores-page-sk.html » ('j') | golden/frontend/res/imp/ignores-page-sk.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698