mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
Do not hide input while loading options. (#621)
Adding the `.hidden` class to the input while loading would cause it to lose padding. This would cause the text to "jump" back and forth.
This commit is contained in:
committed by
Jeff Sagal
parent
fb2d24f6df
commit
9262863514
@@ -1080,7 +1080,7 @@
|
||||
*/
|
||||
inputClasses() {
|
||||
return {
|
||||
hidden: !this.isValueEmpty && !this.dropdownOpen
|
||||
hidden: !this.isValueEmpty && !this.dropdownOpen && !this.mutableLoading
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user