فهرست منبع

fix typo

`getMeunMatchKeys` => `getMenuMatchKeys`
此去 7 سال پیش
والد
کامیت
4bec5248b9
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/components/SiderMenu/SiderMenu.js

+ 3 - 3
src/components/SiderMenu/SiderMenu.js

@@ -42,7 +42,7 @@ export const getFlatMenuKeys = menu =>
  * @param  flatMenuKeys: [/abc, /abc/:id, /abc/:id/info]
  * @param  paths: [/abc, /abc/11, /abc/11/info]
  */
-export const getMeunMatchKeys = (flatMenuKeys, paths) =>
+export const getMenuMatchKeys = (flatMenuKeys, paths) =>
   paths
     .reduce((matchKeys, path) => (
       matchKeys.concat(
@@ -72,7 +72,7 @@ export default class SiderMenu extends PureComponent {
    */
   getDefaultCollapsedSubMenus(props) {
     const { location: { pathname } } = props || this.props;
-    return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname));
+    return getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname));
   }
   /**
    * 判断是否是http链接.返回 Link 或 a
@@ -161,7 +161,7 @@ export default class SiderMenu extends PureComponent {
   // Get the currently selected menu
   getSelectedMenuKeys = () => {
     const { location: { pathname } } = this.props;
-    return getMeunMatchKeys(this.flatMenuKeys, urlToList(pathname));
+    return getMenuMatchKeys(this.flatMenuKeys, urlToList(pathname));
   };
   // conversion Path
   // 转化路径