Romain Brémont
Romain Brémont
@skaindl This is the same bug, waiting for a merge to get it patched
There is a line for that https://github.com/reppners/ngx-drag-drop/blob/280b10c71c78aec812e76fe1a241d2035547f5aa/projects/dnd/src/lib/dnd-draggable.directive.ts#L176 on drag end we are supposed to set pointer-events on "unset" ```ts @HostListener('dragend', ['$event']) onDragEnd(event: DragEvent) { if (!this.draggable || !this.isDragStarted) { return;...
Is the patch #163 causing this problem or just the current latest version of the library ? Do you have something that could prevent the dragEnd event from getting called...
Try to check if u aren't preventing dragEnd from getting called, else, try to reproduce the bug with a simple draggable div, if you can't reproduce it with a simple...
Oh, check my another fix #162, it's fixing problems with unregistering drag handles if they are not in the DOM anymore ;) `pointer-events: none` is required to prevent clicking on...
Hey @andra-flowx, Well there's still no sign of merging but you can still use this branch as a temp fix until someone merge it..
> Why is this not merged? The lib is basically broken without this fix The repository owner seems inactive rn 🫤
@kenancosic Still no news 🤷♀️ Hope soon, until then feel free to fork / clone from it :/
> Any news on this? We've encountered the same issue, and tried to figure out how to avoid it. Still nothing, just clone / fork #162 and #163 so you'll...
> Any plans to merge these two PR's into the master? > > > > Any news on this? We've encountered the same issue, and tried to figure out how...