This commit is contained in:
rizrmd 2024-05-19 19:19:32 +07:00
parent f283f06ddb
commit dfb72d130c
9 changed files with 7 additions and 7 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -221,8 +221,8 @@ export const devItem = (
if (item.childs) {
return item.childs.map((e) => {
if (e) {
const mitem = metas[e.id]?.mitem;
if (mitem) return devItem(metas, mitem, page_id);
const m = metas[e.id];
if (m && m.mitem) return devItem(metas, m.mitem, page_id);
}
});
}