Update src/components/modules/dragNDrop.ts

Co-authored-by: Ilya Maroz <37909603+ilyamore88@users.noreply.github.com>
This commit is contained in:
Umang G. Patel 2023-04-03 13:09:41 +05:30 committed by GitHub
parent a53484f323
commit 09bbb9f091
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,8 +53,8 @@ export default class DragNDrop extends Module {
await this.processDrop(dropEvent);
}, true);
this.readOnlyMutableListeners.on(UI.nodes.holder, 'dragstart', (startDragEvent: DragEvent) => {
this.processDragStart(startDragEvent);
this.readOnlyMutableListeners.on(UI.nodes.holder, 'dragstart', (dragStartEvent: DragEvent) => {
this.processDragStart(dragStartEvent);
});
/**