fix(webui): refresh inventory after changing server cheats #1331

Merged
Sainan merged 1 commits from webui-cheats-refresh into main 2025-03-25 15:12:32 -07:00

View File

@ -967,6 +967,9 @@ function doChangeSettings() {
url: "/custom/config?" + window.authz, url: "/custom/config?" + window.authz,
contentType: "text/plain", contentType: "text/plain",
data: JSON.stringify(json, null, 2) data: JSON.stringify(json, null, 2)
}).then(() => {
// A few cheats affect the inventory response which in turn may change what values we need to show
updateInventory();
}); });
}); });
} }