fix(edtiro): hide toc drag indicator on edgeless note (#10135)

Close [BS-2497](https://linear.app/affine-design/issue/BS-2497/隐藏edgeless-only的toc的dnd-indicator)
This commit is contained in:
L-Sun
2025-02-13 04:18:12 +00:00
parent 011c18de8b
commit dbf1d0038a
@@ -119,6 +119,9 @@ export class OutlineNoteCard extends SignalWatcher(
setDropData: () => ({
noteId: this.note.id,
}),
canDrop: () => {
return this.note.displayMode !== NoteDisplayMode.EdgelessOnly;
},
})
);
}