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

@@ -1,6 +1,7 @@
document.addEventListener("DOMContentLoaded", function (e) {
const toastNotification = document.getElementById("toastNotification");
const toast = new bootstrap.Toast(toastNotification);
let menuId = document.getElementById("menuId").value;
document
.getElementById("btnCreateDataSettings")
.addEventListener("click", async function () {
@@ -37,7 +38,7 @@ document.addEventListener("DOMContentLoaded", function (e) {
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();