fix redirect back data settings

This commit is contained in:
arifal
2025-03-12 21:39:52 +07:00
parent 4db457d7bd
commit e5db2294b4
7 changed files with 33 additions and 37 deletions

View File

@@ -6,6 +6,7 @@ document.addEventListener("DOMContentLoaded", function (e) {
let toast = new bootstrap.Toast(
document.getElementById("toastNotification")
);
let menuId = document.getElementById("menuId").value;
submitButton.addEventListener("click", async function () {
let submitButton = this;
@@ -36,7 +37,7 @@ document.addEventListener("DOMContentLoaded", function (e) {
toastMessage.innerText = result.data.message;
toast.show();
setTimeout(() => {
window.location.href = "/data-settings";
window.location.href = `/data-settings?menu_id=${menuId}`;
}, 2000);
} else {
let error = await response.json();