Hello,
When dragging the object and dragOvering to another list. It was added to the new list even without dropping the item. And not able to shift that item without dropping the currentDragItem. Then I need to drop the current item, drag and dragover the object again to shift the object.
The reason is,
const hasSameSortingScope = this. get('currentDragItem.sortingScope ') === emberObject.get('sortingScope');
this.get return undefined in this chain path.
Hello, When dragging the object and dragOvering to another list. It was added to the new list even without dropping the item. And not able to shift that item without dropping the currentDragItem. Then I need to drop the current item, drag and dragover the object again to shift the object.
The reason is, const hasSameSortingScope = this. get('currentDragItem.sortingScope ') === emberObject.get('sortingScope'); this.get return undefined in this chain path.
sol: const hasSameSortingScope = this. get('currentDragItem').sortingScope === emberObject.get('sortingScope'); or const hasSameSortingScope = this.currentDragItem.sortingScope === emberObject.sortingScope;
Hopefully, it will not change other behaviors.