Skip to content

Commit

Permalink
Sortable: Fix null ref exception during auto scroll if dropFeedbackMo…
Browse files Browse the repository at this point in the history
…de is push (#10250)
  • Loading branch information
vconst authored Oct 17, 2019
1 parent 0bd2b10 commit 230d383
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ui/sortable.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ var Sortable = Draggable.inherit({
if(itemPoint) {
this._updatePlaceholderPosition(e, itemPoint);

if(this.verticalScrollHelper.isScrolling()) {
if(this.verticalScrollHelper.isScrolling() && this._isIndicateMode()) {
this._movePlaceholder();
}
}
Expand Down

0 comments on commit 230d383

Please sign in to comment.