FIX: avoids user-selector having no width
This commit is contained in:
parent
0d46c7a19b
commit
c264348fcb
|
@ -165,7 +165,7 @@ export default function(options) {
|
|||
};
|
||||
|
||||
if (isInput) {
|
||||
const width = this.width();
|
||||
const width = Math.max(this.width(), 200);
|
||||
|
||||
if (options.updateData) {
|
||||
wrap = this.parent();
|
||||
|
|
Loading…
Reference in New Issue