@next-core/brick-kit 2.129.0 → 2.129.1

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.129.1](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.129.0...@next-core/brick-kit@2.129.1) (2022-08-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **handleHttpError:** 修复请求报错msg超出弹窗的问题 refs INSTANCE-2681 ([0944a36](https://github.com/easyops-cn/next-core/commit/0944a36f2733f4f10ae77f93391adaf5ed994cd8))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.129.0](https://github.com/easyops-cn/next-core/compare/@next-core/brick-kit@2.128.1...@next-core/brick-kit@2.129.0) (2022-08-19)
7
18
 
8
19
 
@@ -4016,8 +4016,11 @@
4016
4016
  content: /*#__PURE__*/React__default["default"].createElement("div", {
4017
4017
  style: {
4018
4018
  whiteSpace: "pre-wrap"
4019
+ },
4020
+ dangerouslySetInnerHTML: {
4021
+ __html: httpErrorToString(error)
4019
4022
  }
4020
- }, httpErrorToString(error)),
4023
+ }),
4021
4024
  okText: i18next__default["default"].t("".concat(NS_BRICK_KIT, ":").concat(K.MODAL_OK))
4022
4025
  });
4023
4026
  }