Only search filter for non-text inputs

This commit is contained in:
Josh Johnson 2016-08-08 14:05:29 +01:00
parent 5caa5e4684
commit b17c3a1289
2 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

View file

@ -975,12 +975,12 @@ export class Choices {
this.hideDropdown();
}
}
} else {
// If we have enabled text search
if(this.canSearch) {
this._searchChoices(this.input.value);
}
}
// If we have enabled text search
if(this.canSearch) {
this._searchChoices(this.input.value);
}
}
/**