From 66f3d65d77c7f40f19ca9dec56a6ced16248ef7c Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sat, 12 Jul 2025 21:20:08 -0700 Subject: [PATCH] fix(webui): none syndicate (#2477) Closes #2475 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2477 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- static/webui/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/webui/script.js b/static/webui/script.js index 8b041836..b04a88c4 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -282,6 +282,7 @@ function fetchItemList() { }); const syndicateNone = document.createElement("option"); + syndicateNone.value = ""; syndicateNone.textContent = loc("cheats_none"); document.getElementById("changeSyndicate").innerHTML = ""; document.getElementById("changeSyndicate").appendChild(syndicateNone);