Update cursor style

This commit is contained in:
Booteille 2024-11-13 19:33:49 +01:00
parent e826b07849
commit d7a04cec6a
No known key found for this signature in database
GPG Key ID: 0AB6C6CA01272646
1 changed files with 2 additions and 2 deletions

View File

@ -457,7 +457,7 @@ const handleFiles = (files = []) => {
}); });
window.nbFiles = window.fileList.length; window.nbFiles = window.fileList.length;
document.body.style.cursor = "default"; document.body.style.cursor = "auto";
startUpload( startUpload(
filesArray, filesArray,
@ -496,7 +496,7 @@ const handleFiles = (files = []) => {
window.zipSize window.zipSize
); );
document.body.style.cursor = "default"; document.body.style.cursor = "auto";
return okAsync(undefined); return okAsync(undefined);
}) })