don't coerce options type to array when switching to bindings
This commit is contained in:
parent
7e0c723730
commit
99287b9a5a
|
@ -70,7 +70,7 @@
|
||||||
return Number(value)
|
return Number(value)
|
||||||
}
|
}
|
||||||
if (type === "options") {
|
if (type === "options") {
|
||||||
return [value]
|
return value
|
||||||
}
|
}
|
||||||
if (type === "array") {
|
if (type === "array") {
|
||||||
if (Array.isArray(value)) {
|
if (Array.isArray(value)) {
|
||||||
|
|
Loading…
Reference in New Issue