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

Unified Diff: gm/rebaseline_server/static/view.html

Issue 270413002: rebaseline_server JSON: pass category values as values, not keys (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 7 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: gm/rebaseline_server/static/view.html
diff --git a/gm/rebaseline_server/static/view.html b/gm/rebaseline_server/static/view.html
index bbe1f210f3069bd6d7eaddd34148cf3c23cf2947..b2f3fba4f3d750cb4208be14d77d5bb05cdad4f4 100644
--- a/gm/rebaseline_server/static/view.html
+++ b/gm/rebaseline_server/static/view.html
@@ -68,13 +68,13 @@
<tr valign="top">
<td>
resultType<br>
- <label ng-repeat="(resultType, count) in extraColumnHeaders[constants.KEY__EXTRACOLUMN__RESULT_TYPE][constants.KEY__VALUES_AND_COUNTS] track by $index">
+ <label ng-repeat="valueAndCount in extraColumnHeaders[constants.KEY__EXTRACOLUMN__RESULT_TYPE][constants.KEY__EXTRACOLUMNHEADERS__VALUES_AND_COUNTS]">
<input type="checkbox"
name="resultTypes"
- value="{{resultType}}"
- ng-checked="!isValueInSet(resultType, hiddenResultTypes)"
- ng-click="toggleValueInSet(resultType, hiddenResultTypes); setUpdatesPending(true)">
- {{resultType}} ({{count}})<br>
+ value="{{valueAndCount[0]}}"
+ ng-checked="!isValueInSet(valueAndCount[0], hiddenResultTypes)"
+ ng-click="toggleValueInSet(valueAndCount[0], hiddenResultTypes); setUpdatesPending(true)">
+ {{valueAndCount[0]}} ({{valueAndCount[1]}})<br>
</label>
<button ng-click="hiddenResultTypes = {}; updateResults()">
all
@@ -100,13 +100,13 @@
</td>
<td>
config<br>
- <label ng-repeat="(config, count) in extraColumnHeaders[constants.KEY__EXTRACOLUMN__CONFIG][constants.KEY__VALUES_AND_COUNTS] track by $index">
+ <label ng-repeat="valueAndCount in extraColumnHeaders[constants.KEY__EXTRACOLUMN__CONFIG][constants.KEY__EXTRACOLUMNHEADERS__VALUES_AND_COUNTS]">
<input type="checkbox"
name="configs"
- value="{{config}}"
- ng-checked="!isValueInSet(config, hiddenConfigs)"
- ng-click="toggleValueInSet(config, hiddenConfigs); setUpdatesPending(true)">
- {{config}} ({{count}})<br>
+ value="{{valueAndCount[0]}}"
+ ng-checked="!isValueInSet(valueAndCount[0], hiddenConfigs)"
+ ng-click="toggleValueInSet(valueAndCount[0], hiddenConfigs); setUpdatesPending(true)">
+ {{valueAndCount[0]}} ({{valueAndCount[1]}})<br>
</label>
<button ng-click="hiddenConfigs = {}; updateResults()">
all

Powered by Google App Engine
This is Rietveld 408576698