From 08f320c8015da94496f7ca580f079db46151e8b9 Mon Sep 17 00:00:00 2001 From: Niklas von Moers <49690836+NiklasvonM@users.noreply.github.com> Date: Sat, 29 Nov 2025 13:09:32 +0100 Subject: [PATCH] fix(web): use full tag path when creating nested subtags (#24249) --- web/src/lib/modals/TagCreateModal.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/lib/modals/TagCreateModal.svelte b/web/src/lib/modals/TagCreateModal.svelte index 360681d7b9..5c48e83b08 100644 --- a/web/src/lib/modals/TagCreateModal.svelte +++ b/web/src/lib/modals/TagCreateModal.svelte @@ -14,7 +14,7 @@ const { onClose, baseTag }: Props = $props(); - let tagValue = $state(baseTag?.value ? `${baseTag.value}/` : ''); + let tagValue = $state(baseTag?.path ? `${baseTag.path}/` : ''); const createTag = async () => { const [tag] = await upsertTags({ tagUpsertDto: { tags: [tagValue] } });