mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 00:37:06 +08:00
FIX: edit category tags select-kit inputs width were wrong (#6568)
This commit is contained in:
parent
f84255e71b
commit
fdad24e2e4
|
@ -39,7 +39,9 @@ export default SelectKitComponent.extend({
|
|||
@on("didRender")
|
||||
_setChoicesMaxWidth() {
|
||||
const width = this.$body().outerWidth(false);
|
||||
this.$(".choices").css({ maxWidth: width });
|
||||
if (width > 0) {
|
||||
this.$(".choices").css({ maxWidth: width });
|
||||
}
|
||||
},
|
||||
|
||||
@on("didReceiveAttrs")
|
||||
|
|
Loading…
Reference in New Issue
Block a user