mirror of
https://github.com/discourse/discourse.git
synced 2025-05-29 01:31:35 +08:00
FIX: avoids user-selector having no width
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user