@riil-frontend/component-topology 10.0.45 → 10.0.46
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/build/1.js +2 -2
- package/build/2.js +1 -1
- package/build/index.css +1 -1
- package/build/index.js +17 -17
- package/es/core/components/AlarmListPanel/components/AlarmListItem.js +1 -1
- package/es/core/models/TopoApp.js +1 -1
- package/es/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/hooks/useAlarmAndRiskData.js +1 -1
- package/lib/core/components/AlarmListPanel/components/AlarmListItem.js +1 -1
- package/lib/core/models/TopoApp.js +1 -1
- package/lib/core/viewer/components/plugins/ResourceDetail/components/ResourceOverview/hooks/useAlarmAndRiskData.js +1 -1
- package/package.json +2 -2
@@ -60,7 +60,7 @@ function RiskListItem(props) {
|
|
60
60
|
onClick = props.onClick;
|
61
61
|
|
62
62
|
var riskLink = function riskLink(item) {
|
63
|
-
return "/default/
|
63
|
+
return "/default/healthCheck/riskReport/" + item.id + "?title=\u68C0\u67E5\u62A5\u544A";
|
64
64
|
};
|
65
65
|
|
66
66
|
return /*#__PURE__*/React.createElement(_List.Item, {
|
@@ -24,7 +24,7 @@ import ElementTagTipConfig from "./tagstips/ElementTagTipConfig";
|
|
24
24
|
import SelectionModel from "./SelectionModel";
|
25
25
|
import CiCache from "./cache/CiCache"; // eslint-disable-next-line no-undef
|
26
26
|
|
27
|
-
var version = typeof "10.0.
|
27
|
+
var version = typeof "10.0.46" === 'string' ? "10.0.46" : null;
|
28
28
|
console.info("\u62D3\u6251\u7248\u672C: " + version);
|
29
29
|
/**
|
30
30
|
* 拓扑显示和编辑
|
@@ -129,7 +129,7 @@ var useAlarmAndRiskData = function useAlarmAndRiskData(props) {
|
|
129
129
|
icon: 'Overall_risk_full',
|
130
130
|
className: 'risk-icon',
|
131
131
|
title: "" + item.ciName + item.itemName,
|
132
|
-
link: "/default/
|
132
|
+
link: "/default/healthCheck/riskReport/" + item.id + "?title=\u68C0\u67E5\u62A5\u544A",
|
133
133
|
time: item.firstFoundTime
|
134
134
|
};
|
135
135
|
}); // console.log('告警和风险', alarmList, riskList);
|
@@ -76,7 +76,7 @@ function RiskListItem(props) {
|
|
76
76
|
onClick = props.onClick;
|
77
77
|
|
78
78
|
var riskLink = function riskLink(item) {
|
79
|
-
return "/default/
|
79
|
+
return "/default/healthCheck/riskReport/" + item.id + "?title=\u68C0\u67E5\u62A5\u544A";
|
80
80
|
};
|
81
81
|
|
82
82
|
return /*#__PURE__*/_react["default"].createElement(_list["default"].Item, {
|
@@ -56,7 +56,7 @@ var _SelectionModel = _interopRequireDefault(require("./SelectionModel"));
|
|
56
56
|
var _CiCache = _interopRequireDefault(require("./cache/CiCache"));
|
57
57
|
|
58
58
|
// eslint-disable-next-line no-undef
|
59
|
-
var version = typeof "10.0.
|
59
|
+
var version = typeof "10.0.46" === 'string' ? "10.0.46" : null;
|
60
60
|
console.info("\u62D3\u6251\u7248\u672C: " + version);
|
61
61
|
/**
|
62
62
|
* 拓扑显示和编辑
|
@@ -141,7 +141,7 @@ var useAlarmAndRiskData = function useAlarmAndRiskData(props) {
|
|
141
141
|
icon: 'Overall_risk_full',
|
142
142
|
className: 'risk-icon',
|
143
143
|
title: "" + item.ciName + item.itemName,
|
144
|
-
link: "/default/
|
144
|
+
link: "/default/healthCheck/riskReport/" + item.id + "?title=\u68C0\u67E5\u62A5\u544A",
|
145
145
|
time: item.firstFoundTime
|
146
146
|
};
|
147
147
|
}); // console.log('告警和风险', alarmList, riskList);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@riil-frontend/component-topology",
|
3
|
-
"version": "10.0.
|
3
|
+
"version": "10.0.46",
|
4
4
|
"description": "拓扑",
|
5
5
|
"scripts": {
|
6
6
|
"start": "build-scripts start",
|
@@ -116,6 +116,6 @@
|
|
116
116
|
"access": "public"
|
117
117
|
},
|
118
118
|
"license": "MIT",
|
119
|
-
"homepage": "https://unpkg.com/@riil-frontend/component-topology@10.0.
|
119
|
+
"homepage": "https://unpkg.com/@riil-frontend/component-topology@10.0.46/build/index.html",
|
120
120
|
"gitHead": "2da19ffccbb7ca60a8acf396e39f542c68bb33f5"
|
121
121
|
}
|