1
0

Back button works correctly with restore software
All checks were successful
Build and test project / build-and-test (push) Successful in 1m31s

This commit is contained in:
2026-03-19 13:55:22 +01:00
parent 5cb3f4a180
commit 9cc4069aca

View File

@@ -677,7 +677,15 @@
}
btnBuildBack.addEventListener('click', () => {
goToPatches();
if (isRestore) {
// Restore was triggered directly from the device step
isRestore = false;
setNavLabels(NAV_DEFAULT);
setNavStep(1);
showStep(stepDevice);
} else {
goToPatches();
}
});
const buildProgress = $('build-progress');