webUI fix

This commit is contained in:
AlexisinGit 2025-09-11 14:45:13 +08:00
parent b46849206a
commit 8a8b8e03fc

View File

@ -3059,7 +3059,7 @@ document.querySelectorAll("#account-cheats input[type=checkbox], #account-cheats
contentType: "application/json",
data: JSON.stringify({
key: elm.id,
value: elm.checked
value: value
})
});
});
@ -3074,7 +3074,7 @@ document.querySelectorAll("#guild-cheats input[type=checkbox]").forEach(elm => {
contentType: "application/json",
data: JSON.stringify({
key: elm.id,
value: value
value: elm.checked
})
});
});