Skip to content
This repository has been archived by the owner on Oct 2, 2019. It is now read-only.

Commit

Permalink
fix: show input when search is disabled
Browse files Browse the repository at this point in the history
- Show input when search is not enabled

Closes #595
Fixes #453
  • Loading branch information
gen4sp authored and wesleycho committed Apr 6, 2016
1 parent f5b986b commit 83132b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/match.tpl.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="ui-select-match" ng-hide="$select.open" ng-disabled="$select.disabled" ng-class="{'btn-default-focus':$select.focus}">
<div class="ui-select-match" ng-hide="$select.open && $select.searchEnabled" ng-disabled="$select.disabled" ng-class="{'btn-default-focus':$select.focus}">
<span tabindex="-1"
class="btn btn-default form-control ui-select-toggle"
aria-label="{{ $select.baseTitle }} activate"
Expand Down

1 comment on commit 83132b0

@CoperNick8
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar change should be made also on dist/select.js ?

Please sign in to comment.