To fix this issue you need to change the animation
setting to 0
of the sortable instance:
Sortable.create(document.getElementsByClassName('sortable')[0], {
items: "tr",
group: '1',
animation: 0
});
Sortable.create(document.getElementsByClassName('sortable')[1], {
items: "tr",
group: '1',
animation: 0
});