diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 2ec25da2d..ebccfdfd1 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -255,6 +255,7 @@ Ranjit Odedra Eltaurus jariji Francisco Esteva +AmandaSternberg-creator ******************** diff --git a/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte b/ts/lib/tag-editor/tag-options-button/TagAddButton.svelte index bba607701..79fdbdad6 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(); } }