vince 2 years ago
parent
commit
7e18eb7471
  1. 4
      packages/@core/forward/helpers/src/find-menu-by-path.ts

4
packages/@core/forward/helpers/src/find-menu-by-path.ts

@ -24,7 +24,9 @@ function findMenuByPath(
function findRootMenuByPath(menus: MenuRecordRaw[], path?: string) { function findRootMenuByPath(menus: MenuRecordRaw[], path?: string) {
const findMenu = findMenuByPath(menus, path); const findMenu = findMenuByPath(menus, path);
const rootMenuPath = findMenu?.parents?.[0]; const rootMenuPath = findMenu?.parents?.[0];
const rootMenu = menus.find((item) => item.path === rootMenuPath); const rootMenu = rootMenuPath
? menus.find((item) => item.path === rootMenuPath)
: undefined;
return { return {
findMenu, findMenu,
rootMenu, rootMenu,

Loading…
Cancel
Save