diff --git a/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte b/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte index 649659056..bba607701 100644 --- a/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte +++ b/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte @@ -18,7 +18,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html export let onTagAppend: (() => void) | undefined; function appendTag() { - if (onTagAppend) { + if (onTagAppend){ onTagAppend(); } }