Skip to content

Commit

Permalink
fix(kmultiselect): make sure bound attributes override default (#2407)
Browse files Browse the repository at this point in the history
  • Loading branch information
portikM authored Oct 4, 2024
1 parent de08df7 commit 06cbcdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/KMultiselect/KMultiselect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
ref="multiselectElement"
v-bind-once="{ id: multiselectWrapperId }"
class="multiselect-trigger"
v-bind="modifiedAttrs"
:class="{ focused: isFocused, hovered: isHovered, disabled: isDisabled, readonly: isReadonly }"
data-testid="multiselect-trigger"
role="listbox"
:tabindex="isDisabled || isReadonly || collapsedContext ? -1 : 0"
v-bind="modifiedAttrs"
@click="handleFilterClick"
>
<div v-if="collapsedContext">
Expand Down

0 comments on commit 06cbcdd

Please sign in to comment.