You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar issue here:
I move the task to other status, but after the "drop" and "update-block" events are triggered, the task moves up or down inside the new column. Moving the task inside the same status works fine.
The same issue is happening to the demo also on both chrome and firefox: https://vue-kanban.netlify.app/
This is a big issue, since the order is very important for my use case.
I noticed that the task moves up or down because the tasks are sorted by ID after the drop event finishes.
We need to prevent this sort from happening...
Hope this detail helps.
Ok,
Seems that the tasks are reordered because we update the task's object "status" property in the updateBlock() function.
We must update it for consistency, but we need to sort the tasks in the getBlocks(status) function according to a new property "position" which has to be updated according to the position from list.
When I try to drag the cards, they go to the top of the column. So how to keep them in the exact place where they got dropped ?
The text was updated successfully, but these errors were encountered: