We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecf3fa2 commit 43c6846Copy full SHA for 43c6846
2 files changed
src/lib/components/common/Tags/TagInput.svelte
@@ -35,6 +35,7 @@
35
list="tagOptions"
36
on:keydown={(event) => {
37
if (event.key === 'Enter') {
38
+ event.preventDefault();
39
addTagHandler();
40
}
41
}}
src/lib/components/common/Tags/TagItem.svelte
@@ -13,6 +13,7 @@
13
{#if tag}
14
<Tooltip content={tag.name}>
15
<button
16
+ type="button"
17
aria-label={$i18n.t('Remove this tag from list')}
18
class="relative group/tags px-1.5 py-[0.5px] gap-0.5 flex justify-between h-fit max-h-fit w-fit items-center rounded-lg bg-gray-500/20 text-gray-700 dark:text-gray-200 transition cursor-pointer"
19
on:click={() => {
0 commit comments