diff options
author | epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-26 15:01:08 +0000 |
---|---|---|
committer | epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-10-26 15:01:08 +0000 |
commit | 92165bc09b221629b42203ebade0b59be98f6c23 (patch) | |
tree | 6822d28f0fc5500e465455c09de7df3e9fe9b1b2 /gm/rebaseline_server | |
parent | 2ce9c215ce88d79ee6fca08925c04c918535d74b (diff) |
rebaseline_server: tiny fix to un-break UI when ng-repeate (key, value) has duplicate values
See https://github.com/angular/angular.js/pull/2505
(SkipBuildbotRuns)
TBR=jcgregorio
Review URL: https://codereview.chromium.org/46063005
git-svn-id: http://skia.googlecode.com/svn/trunk@11972 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gm/rebaseline_server')
-rw-r--r-- | gm/rebaseline_server/static/view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gm/rebaseline_server/static/view.html b/gm/rebaseline_server/static/view.html index 36da9ee2b7..818d7dea2f 100644 --- a/gm/rebaseline_server/static/view.html +++ b/gm/rebaseline_server/static/view.html @@ -91,7 +91,7 @@ <!-- TODO(epoger): make this an ng-repeat over resultType, config, etc? --> <td> resultType<br> - <label ng-repeat="(resultType, count) in categories['resultType']"> + <label ng-repeat="(resultType, count) in categories['resultType'] track by $index"> <input type="checkbox" name="resultTypes" value="{{resultType}}" @@ -102,7 +102,7 @@ </td> <td> config<br> - <label ng-repeat="(config, count) in categories['config']"> + <label ng-repeat="(config, count) in categories['config'] track by $index"> <input type="checkbox" name="configs" value="{{config}}" |