@next-core/brick-kit 2.117.11 → 2.117.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.117.12](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.117.11...@next-core/brick-kit@2.117.12) (2022-04-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **getMenu:** fix menu lose ([3be0166](https://github.com/easyops-cn/next-core/commit/3be0166378cd5ae735c76b41cb7537fa6f3327d6))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.117.11](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.117.10...@next-core/brick-kit@2.117.11) (2022-04-15)
7
18
 
8
19
 
@@ -2753,7 +2753,6 @@
2753
2753
 
2754
2754
  function _constructMenuByMenusList() {
2755
2755
  _constructMenuByMenusList = _asyncToGenerator__default["default"](function* (menus, context, kernel) {
2756
- processMenuCache.clear();
2757
2756
  var data = yield Promise.all(menus.map(menuId => processMenu(menuId, context, kernel)));
2758
2757
  data.forEach((item, index) => processMenuCache.set(menus[index], item));
2759
2758
  });