-
Notifications
You must be signed in to change notification settings - Fork 917
Expected to find a valid target. #857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
There's an open PR #740 that should fix this. |
nice, thanks! |
It seems that this PR was not merged and I'm with the same problem 😢 |
yes same here |
I am no longer using this library, but I had figured out that this error is only visible in development mode. No such error in production mode. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is reproducible by simply using the Tree-to-tree dragging example in development mode.
How: Select a node to copy/move to the last position of another tree and drag it a little bit more under that.

Reason: It is looking for a targetId which is not there. If the last valid target id is T3, this will cause the dnd to look for a targetId of T5, which is not there. DragDropMonitorImpl.js is where I debugged this.
Example:
Source Code:
The text was updated successfully, but these errors were encountered: