Skip to content

Commit

Permalink
fix ui-select on circles
Browse files Browse the repository at this point in the history
Expected 1 .ui-select-match but got '0'.
angular-ui/ui-select#1325 (comment)
  • Loading branch information
timelf123 committed May 17, 2016
1 parent bc6770a commit fa14ac1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/views/create.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ <h1>Create Circles</h1>
<label mean-token="'circles'" for="circles" class="col-md-2 control-label">Circles</label>
<div class="col-md-10">
<ui-select multiple ng-model="vm.circle.circles">
<ui-select-match placeholder="Select circles...">{{$item}}</ui-select-match>
<ui-select-choices repeat="circle in vm.availableCircles | filter:$select.search">
<ui-select-match class="ui-select-match" placeholder="Select circles...">{{$item}}</ui-select-match>
<ui-select-choices class="ui-select-choices" repeat="circle in vm.availableCircles | filter:$select.search">
{{circle}}
</ui-select-choices>
</ui-select>
Expand All @@ -31,4 +31,4 @@ <h1>Create Circles</h1>
</div>
</form>

</div>
</div>

0 comments on commit fa14ac1

Please sign in to comment.