Merge pull request #439 from ONLYOFFICE/bugfix/fixed-header-arrow-click

Web: Files: fixed onBackToParentFolder
This commit is contained in:
Ilya Oleshko 2021-10-28 14:06:15 +03:00 committed by GitHub
commit d214b3f250
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,7 +295,7 @@ class SectionHeaderContent extends React.Component {
onBackToParentFolder = () => {
const { setIsLoading, parentId, filter, fetchFiles } = this.props;
setIsLoading(true);
fetchFiles(parentId, filter).finally(() => setIsLoading(false));
fetchFiles(parentId, null, true, false).finally(() => setIsLoading(false));
};
onCheck = (checked) => {