diff --git a/ts/editor/tag-editor/tag-options-button/TagAddButton.svelte b/ts/editor/tag-editor/tag-options-button/TagAddButton.svelte index 7a512bda1..45c71a5c3 100644 --- a/ts/editor/tag-editor/tag-options-button/TagAddButton.svelte +++ b/ts/editor/tag-editor/tag-options-button/TagAddButton.svelte @@ -13,13 +13,19 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html const dispatch = createEventDispatcher<{ tagappend: CustomEvent }>(); + function appendTag() { + dispatch("tagappend"); + } + const keyCombination = "Control+Shift+T";
dispatch("tagappend")} + tabindex={0} + on:click={appendTag} + on:focus={appendTag} > {@html tagIcon}