fix(web): use full tag path when creating nested subtags (#24249)

This commit is contained in:
Niklas von Moers
2025-11-29 13:09:32 +01:00
committed by GitHub
parent e36261b552
commit 08f320c801

View File

@@ -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] } });