Fix filters with array of value options

This commit is contained in:
Vincent Fiduccia 2013-03-15 18:15:31 -07:00
parent bc5d4e6218
commit c3d294040d
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@
<select id="filter_{{cur.id}}_value">
<option value=""></option>
{{#eachProperty thisFilterSchema.options}}
<option value="{{key}}" {{#ifEqual key cur.value}} SELECTED{{/ifEqual}}>{{key}}</option>
<option value="{{value}}" {{#ifEqual value cur.value}} SELECTED{{/ifEqual}}>{{value}}</option>
{{/eachProperty}}
</select>
{{else}}