Upgraded ui

This commit is contained in:
Saifeddine ALOUI
2025-01-27 12:49:12 +01:00
committed by GitHub
parent a4156fed19
commit e4b2a5956e

View File

@@ -225,7 +225,7 @@ const handlers = {
const percentage = ((i + 1) / state.files.length) * 100; const percentage = ((i + 1) / state.files.length) * 100;
progressBar.style.width = `${percentage}%`; progressBar.style.width = `${percentage}%`;
statusText.textContent = i + 1; statusText.textContent = `${i + 1}/${state.files.length}`;
} catch (error) { } catch (error) {
console.error('Upload error:', error); console.error('Upload error:', error);
} }