mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-18 17:41:23 +02:00
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:
parent
09eef96ed8
commit
e17d6228e4
2 changed files with 7 additions and 3 deletions
|
|
@ -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(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue