We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24975b5 commit 287febfCopy full SHA for 287febf
examples/bootstrap.html
@@ -63,9 +63,9 @@
63
64
<ui-select ng-model="person.selected" theme="bootstrap" search-enabled="false">
65
<ui-select-match placeholder="Select or search a person in the list...">{{$select.selected.name}}</ui-select-match>
66
- <ui-select-choices repeat="item in people | filter: $select.search">
67
- <div ng-bind-html="item.name | highlight: $select.search"></div>
68
- <small ng-bind-html="item.email | highlight: $select.search"></small>
+ <ui-select-choices repeat="item in people">
+ <div ng-bind-html="item.name"></div>
+ <small ng-bind-html="item.email"></small>
69
</ui-select-choices>
70
</ui-select>
71
0 commit comments