Fixed #2225 - [BUG] DataTable column reorder in wrong order

pull/2614/head
Tuğçe Küçükoğlu 2022-06-02 11:10:32 +03:00
parent 915cd2abc9
commit 0d2fe6c797
1 changed files with 1 additions and 1 deletions

View File

@ -1254,7 +1254,7 @@ export default {
let dragIndex = DomHandler.index(this.draggedColumn);
let dropIndex = DomHandler.index(this.findParentHeader(event.target));
let allowDrop = (dragIndex !== dropIndex);
if (allowDrop && ((dropIndex - dragIndex === 1 && this.dropPosition === -1) || (dragIndex - dropIndex === 1 && this.dropPosition === 1))) {
if (allowDrop && ((dragIndex - dropIndex === 1 && this.dropPosition === -1) || (dropIndex - dragIndex === 1 && this.dropPosition === 1))) {
allowDrop = false;
}