Improved stability

This commit is contained in:
Verena Schulz
2025-12-15 13:48:27 +01:00
parent bb589e6aad
commit accb65252c
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ manualUploadBtn.addEventListener('click', () => {
stepButtons.forEach(btn => {
btn.addEventListener("click", () => {
try {
const step = btn.dataset.step;
const step = parseInt(btn.dataset.step);
showStep(step);
} catch (error) {