Skip to content

Commit

Permalink
Fixed Bug 53081. Fixed dragging thirdparty folder
Browse files Browse the repository at this point in the history
  • Loading branch information
gopienkonikita committed Nov 1, 2021
1 parent 3c7df89 commit cf3c74c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion products/ASC.Files/Client/src/store/FilesStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class FilesStore {
};

setStartDrag = (startDrag) => {
this.selection = this.selection.filter((x) => !x.isThirdPartyFolder); // removed root thirdparty folders
this.selection = this.selection.filter((x) => !x.providerKey); // removed root thirdparty folders
this.startDrag = startDrag;
};

Expand Down

0 comments on commit cf3c74c

Please sign in to comment.