We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have an example here: https://stackblitz.com/edit/solidjs-templates-uekvqb If you drag around the row with the '0' ID then a gap is not made for it in the list. You can drop the item OK.
The text was updated successfully, but these errors were encountered:
Thanks for the report and reproduction. I'll take a look.
Sorry, something went wrong.
From a quick look I imagine it is caused by this naive check here:
solid-dnd/src/sortable-context.tsx
Line 44 in 809014f
I'll fix that to be stricter (and avoid treating a 0 as a false evaluation).
0
From a quick look I imagine it is caused by this naive check here: solid-dnd/src/sortable-context.tsx Line 44 in 809014f if (dndState.active.draggableId && dndState.active.droppableId) { I'll fix that to be stricter (and avoid treating a 0 as a false evaluation).
Yes this fix works.
No branches or pull requests
I have an example here: https://stackblitz.com/edit/solidjs-templates-uekvqb
If you drag around the row with the '0' ID then a gap is not made for it in the list.
You can drop the item OK.
The text was updated successfully, but these errors were encountered: