Skip to content

Commit

Permalink
fix(TagsInput): autoFocus was focusing even set as false
Browse files Browse the repository at this point in the history
  • Loading branch information
zernonia committed Feb 10, 2024
1 parent ecf993e commit c1fe695
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/radix-vue/src/TagsInput/TagsInputInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,16 @@ onMounted(() => {

<template>
<Primitive
v-bind="props"
:id="context.id?.value"
:ref="forwardRef"
type="text"
autocomplete="off"
autocorrect="off"
autocapitalize="off"
:as="as"
:as-child="asChild"
:maxlength="maxLength"
:placeholder="placeholder"
:disabled="context.disabled.value"
:data-invalid="context.isInvalidInput.value ? '' : undefined"
@input="handleInput"
Expand Down

0 comments on commit c1fe695

Please sign in to comment.