Closed JZubero closed 2 years ago
When clicking the clear icon, the dropdown shows shortly before the selection is cleared and dropdown closes again.
This could be avoided with the .stop modifier:
.stop
<!-- Clear --> <slot v-if="hasSelected && !disabled && canClear && !busy" name="clear" :clear="clear"> <span tabindex="0" role="button" aria-label="❎" :class="classList.clear" @click.stop="clear" @keyup.enter="clear" ><span :class="classList.clearIcon"></span></span> </slot>
Thanks, fixed in 2.5.7.
2.5.7
@adamberecz Confirmed :heavy_check_mark: Thanks for this.
When clicking the clear icon, the dropdown shows shortly before the selection is cleared and dropdown closes again.
This could be avoided with the
.stop
modifier: