We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b067a3b commit 52b043eCopy full SHA for 52b043e
web-app/src/screens/Console/Buckets/ListBuckets/Objects/utils.ts
@@ -121,7 +121,7 @@ export const download = (
121
req.responseType = "blob";
122
req.onreadystatechange = () => {
123
if (req.readyState === XMLHttpRequest.DONE) {
124
- // Ensure object was donwloaded fully, if it's folder we don't get the fileSize
+ // Ensure object was downloaded fully, if it's a folder we don't get the fileSize
125
let completeDownload =
126
isFolder(objectPath) || req.response.size === fileSize;
127
0 commit comments