diff options
-rw-r--r-- | apps/files/js/filelist.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index d546186aff9..6163f34864b 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3350,6 +3350,7 @@ && !self.$el.is(dropTarget) // dropped on list directly && !self.$el.has(dropTarget).length // dropped inside list && !dropTarget.is(self.$container) // dropped on main container + && !self.$el.parent().is(dropTarget) // drop on the parent container (#app-content) since the main container might not have the full height ) { e.preventDefault(); return false; |