Merge pull request 'fixed redirect' (#32) from fix-edit-child-cancel-redirect into main
Build and Push Docker Image / build-and-push (push) Successful in 25s
Python Code Quality / python-code-quality (push) Successful in 10s
Python Test / python-test (push) Successful in 18s

Reviewed-on: #32
This commit was merged in pull request #32.
This commit is contained in:
2025-11-12 17:34:41 +01:00
+2 -1
View File
@@ -338,7 +338,8 @@
}
function goBack() {
window.location.href = "/";
// Redirect to settings page if editing, otherwise home page
window.location.href = isEditMode ? "/settings.html" : "/";
}
function skipToHome() {