FIX: avoids user-selector having no width

This commit is contained in:
Joffrey JAFFEUX 2017-08-21 18:55:44 +02:00 committed by GitHub
parent 0d46c7a19b
commit c264348fcb
1 changed files with 1 additions and 1 deletions

View File

@ -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();