From e686c2814e71f8008ca6a070731fb78a3f153d72 Mon Sep 17 00:00:00 2001 From: gopienkonikita Date: Wed, 6 Oct 2021 13:13:10 +0300 Subject: [PATCH] Bug 52975 - Client.Files.Download. Added closing the download dialog --- .../Client/src/components/dialogs/DownloadDialog/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/products/ASC.Files/Client/src/components/dialogs/DownloadDialog/index.js b/products/ASC.Files/Client/src/components/dialogs/DownloadDialog/index.js index 3f88baa668..f371d98aaf 100644 --- a/products/ASC.Files/Client/src/components/dialogs/DownloadDialog/index.js +++ b/products/ASC.Files/Client/src/components/dialogs/DownloadDialog/index.js @@ -86,6 +86,7 @@ class DownloadDialogComponent extends React.Component { window.open(viewUrl, "_self"); this.onClose(); } else if (fileConvertIds.length || folderIds.length) { + this.onClose(); downloadFiles(fileConvertIds, folderIds, t("Translations:ArchivingData")); } };