This repository was archived by the owner on Oct 2, 2019. It is now read-only.
This repository was archived by the owner on Oct 2, 2019. It is now read-only.
choice ng-repeat doesn't allow for "(key,value) in object" #247
Closed
Description
http://plnkr.co/edit/JHKjnlzaAhecwH5K4yLr?p=preview
<div class="form-group">
<ui-select ng-model="selectedBlah" theme="bootstrap">
<ui-select-match placeholder="Choose a blah...">{{$select.selected}}</ui-select-match>
<ui-select-choices repeat="(key, value) in blahs | filter: $select.search">
<div ng-bind-html="key"></div>
</ui-select-choices>
</ui-select>
</div>