fix: incorrect text for TagsInputItem.vue

This commit is contained in:
tonyaellie 2025-04-28 22:07:08 +00:00
parent 92bb564dfa
commit 3ea3ebb346
No known key found for this signature in database
GPG Key ID: EA0BFECD735BADF9

View File

@ -16,7 +16,7 @@ const forwardedProps = useForwardProps(delegatedProps)
</script>
<template>
<TagsInputItem v-bind="forwardedProps" :class="cn('flex h-6 items-center rounded bg-secondary data-[state=active]:ring-ring data-[state=active]:ring-2 data-[state=active]:ring-offset-2 ring-offset-background', props.class)">
<TagsInputItem v-bind="forwardedProps" :class="cn('flex h-6 items-center rounded bg-secondary text-secondary-foreground data-[state=active]:ring-ring data-[state=active]:ring-2 data-[state=active]:ring-offset-2 ring-offset-background', props.class)">
<slot />
</TagsInputItem>
</template>