Угловой раскрывающийся список ui-select
Проблема в том, что когда я помещаю ui-select внутри html-элемента с переполнением, список вариантов не отображается полностью.
Любая помощь??
Вот плункер.
<ui-select ng-model="ctrl.person.selected" theme="select2" style="min-width: 150px;">
<ui-select-match>{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="person in ctrl.people | propsFilter: {name: $select.search, age: $select.search}">
<div ng-bind-html="person.name | highlight: $select.search"></div>
<small>
email: {{person.email}}
age: <span ng-bind-html="''+person.age | highlight: $select.search"></span>
</small>
</ui-select-choices>
</ui-select>