Browse Source

forEach should be used instead of map (#3332)

pull/3349/head
onceyoung 7 years ago
committed by 陈帅
parent
commit
fd116eeded
  1. 2
      src/layouts/BasicLayout.js

2
src/layouts/BasicLayout.js

@ -99,7 +99,7 @@ class BasicLayout extends React.PureComponent {
getRouterAuthority = (pathname, routeData) => { getRouterAuthority = (pathname, routeData) => {
let routeAuthority = ['noAuthority']; let routeAuthority = ['noAuthority'];
const getAuthority = (key, routes) => { const getAuthority = (key, routes) => {
routes.map(route => { routes.forEach(route => {
if (route.path && pathToRegexp(route.path).test(key)) { if (route.path && pathToRegexp(route.path).test(key)) {
routeAuthority = route.authority; routeAuthority = route.authority;
} else if (route.routes) { } else if (route.routes) {

Loading…
Cancel
Save