3

Using Angular and multi ui-select, the select box shows an unwanted "extra" box (see picture). How can I remove this?

enter image description here 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>
excentris
  • 471
  • 1
  • 7
  • 25

1 Answers1

4

This is most likely caused by failing to include the select.css file in your index.html file. Add the following to your <head> tag in your index.html:

<link rel="stylesheet" href="path/to/select.css"/>
Blake Mumford
  • 17,201
  • 12
  • 49
  • 67