fix(webui): add exalted array for kubrow ItemLists
All checks were successful
Build / build (pull_request) Successful in 1m30s

Closes #1770
This commit is contained in:
AMelonInsideLemon 2025-04-22 08:33:32 +02:00
parent 731be0d5e3
commit 08e9d1af78

View File

@ -68,7 +68,8 @@ const getItemListsController: RequestHandler = (req, response) => {
if (item.productCategory != "SpecialItems") { if (item.productCategory != "SpecialItems") {
res[item.productCategory].push({ res[item.productCategory].push({
uniqueName, uniqueName,
name: getString(item.name, lang) name: getString(item.name, lang),
exalted: item.exalted
}); });
} }
} }