1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Update NoteList.tsx

This commit is contained in:
Laurent Cozic 2023-03-15 14:32:52 +00:00 committed by GitHub
parent f563ca1a33
commit 935fad3f28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -241,7 +241,6 @@ const NoteListComponent = (props: Props) => {
event.dataTransfer.setDragImage(new Image(), 1, 1);
event.dataTransfer.clearData();
event.dataTransfer.setData('text/x-jop-note-ids', JSON.stringify(noteIds));
// ref: https://github.com/laurent22/joplin/issues/7881
event.dataTransfer.effectAllowed = 'move';
};