From 9cc0c76ef54d485160e70b132eebed3c12e6ad72 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Tue, 12 Aug 2025 06:32:41 -0700 Subject: [PATCH] chore(webui): omit conclave from supported syndicates (#2608) Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2608 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- static/webui/script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/webui/script.js b/static/webui/script.js index 2445a6fc..3715e906 100644 --- a/static/webui/script.js +++ b/static/webui/script.js @@ -497,6 +497,9 @@ function fetchItemList() { uniqueLevelCaps = items; } else if (type == "Syndicates") { items.forEach(item => { + if (item.uniqueName === "ConclaveSyndicate") { + return; + } if (item.uniqueName.startsWith("RadioLegion")) { item.name += " (" + item.uniqueName + ")"; }