2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

fix: allow selecting boolean values (#1518)

This commit is contained in:
Jeff Sagal
2022-02-18 12:51:29 -08:00
committed by GitHub
parent f8a41df594
commit a1944e09e8
2 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -702,7 +702,7 @@ export default {
value = this.$data._value
}
if (value) {
if (value !== undefined && value !== null) {
return [].concat(value)
}