2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00

Merge branch 'master' into customizable-text

This commit is contained in:
Jeff Sagal
2021-10-07 09:12:40 -07:00
20 changed files with 143 additions and 97 deletions
+2 -2
View File
@@ -189,7 +189,7 @@ disabled: {
## dropdownShouldOpen <Badge text="v3.12.0+" />
Determines whether the dropdown should open. Used
Determines whether the dropdown should open. Used
for overriding the default dropdown behaviour. Receives
the vue-select instance as the single argument to the function.
@@ -250,7 +250,7 @@ if the option should be displayed.
filterBy: {
type: Function,
default(option, label, search) {
return (label || '').toLowerCase().indexOf(search.toLowerCase()) > -1
return (label || '').toLocaleLowerCase().indexOf(search.toLocaleLowerCase()) > -1
}
},
```