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

pull/24263/head
Niklas von Moers 2025-11-29 13:09:32 +01:00 committed by GitHub
parent e36261b552
commit 08f320c801
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
const { onClose, baseTag }: Props = $props(); const { onClose, baseTag }: Props = $props();
let tagValue = $state(baseTag?.value ? `${baseTag.value}/` : ''); let tagValue = $state(baseTag?.path ? `${baseTag.path}/` : '');
const createTag = async () => { const createTag = async () => {
const [tag] = await upsertTags({ tagUpsertDto: { tags: [tagValue] } }); const [tag] = await upsertTags({ tagUpsertDto: { tags: [tagValue] } });