Skip to content

Commit 9ac4aa8

Browse files
fix: Remove plus button when the tags input is disabled
1 parent 83667c2 commit 9ac4aa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panel/src/components/Forms/Input/TagsInput.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@click.stop="$refs.toggle?.$el?.click()"
1414
>
1515
<k-button
16-
v-if="!max || value.length < max"
16+
v-if="!disabled && (!max || value.length < max)"
1717
:id="id"
1818
ref="toggle"
1919
:autofocus="autofocus"

0 commit comments

Comments
 (0)