fix a bug in select input
This commit is contained in:
parent
63d5f04af7
commit
2b494815f2
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ Ox.SelectInput = function(options, self) {
|
||||||
min: 0,
|
min: 0,
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
title: '',
|
title: '',
|
||||||
value: options.max == 1 ? '' : [],
|
value: options.max == 1 || options.max == void 0 ? '' : [],
|
||||||
width: 384
|
width: 384
|
||||||
}, options || {})
|
}, options || {})
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue