mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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
Block a user