fix(manacore/web): fix getTagsByIds missing allTags param in zitare, fix TagDragData cast

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-04-03 14:20:34 +02:00
parent 09eef96ed8
commit e17d6228e4
2 changed files with 7 additions and 3 deletions

View file

@ -27,7 +27,9 @@
const OFFSET_Y = -20;
const tagData = $derived(
dragState.activeDrag?.type === 'tag' ? (dragState.activeDrag.data as TagDragData) : null
dragState.activeDrag?.type === 'tag'
? (dragState.activeDrag.data as unknown as TagDragData)
: null
);
const entityData = $derived(() => {