Using Angular and multi ui-select, the select box shows an unwanted "extra" box (see picture). How can I remove this?
Code:
<ui-select multiple ng-model="definition.attachments" theme="bootstrap">
<ui-select-match >{{$item.name}}</ui-select-match>
<ui-select-choices repeat="template.id as template in templates">{{template.name}}</ui-select-choices>
</ui-select>