feat: closes #10719, don't trim children if category is marked section

isekai-main
Barış Soner Uşaklı 3 years ago committed by Julian Lam
parent e0985d72e7
commit be917e8d39

@ -357,10 +357,14 @@ helpers.getSelectedCategory = async function (cids) {
}; };
helpers.trimChildren = function (category) { helpers.trimChildren = function (category) {
if (Array.isArray(category.children)) { if (category && Array.isArray(category.children)) {
category.children = category.children.slice(0, category.subCategoriesPerPage); category.children = category.children.slice(0, category.subCategoriesPerPage);
category.children.forEach((child) => { category.children.forEach((child) => {
child.children = undefined; if (category.isSection) {
helpers.trimChildren(child);
} else {
child.children = undefined;
}
}); });
} }
}; };

Loading…
Cancel
Save