+
@@ -432,9 +432,6 @@ export default {
this.clicked = false;
},
- isClearIconVisible() {
- return this.showClear && this.modelValue != null && isNotEmpty(this.options);
- },
onEditableInput(event) {
const value = event.target.value;
@@ -993,6 +990,9 @@ export default {
ariaSetSize() {
return this.visibleOptions.filter((option) => !this.isOptionGroup(option)).length;
},
+ isClearIconVisible() {
+ return this.showClear && this.modelValue != null && isNotEmpty(this.options);
+ },
virtualScrollerDisabled() {
return !this.virtualScrollerOptions;
}