chore(webui): omit conclave from supported syndicates #2608

Merged
Sainan merged 1 commits from no-conclave into main 2025-08-12 06:32:42 -07:00
Showing only changes of commit d95852c60b - Show all commits

View File

@ -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 + ")";
}