From 6bbb3bf3999982b2ba5c65cdcb0e96ff8b8f5aae Mon Sep 17 00:00:00 2001 From: amcmanu3 Date: Wed, 19 Jun 2024 13:28:39 -0400 Subject: [PATCH] Fix box close after upload complete --- app/frontend/templates/panel/server_files.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/frontend/templates/panel/server_files.html b/app/frontend/templates/panel/server_files.html index 8ba95a66..d116681b 100644 --- a/app/frontend/templates/panel/server_files.html +++ b/app/frontend/templates/panel/server_files.html @@ -795,7 +795,9 @@ await Promise.all(uploadPromises); - hideUploadBox(); + setTimeout(() => { + hideUploadBox(); + }, 2000); } }