ztxkui 1.5.1 → 1.5.2
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.
|
@@ -62,7 +62,15 @@ var DetailList = function (_a) {
|
|
|
62
62
|
if (!item.isManOrDate) {
|
|
63
63
|
// 进一步筛选出附件的数据
|
|
64
64
|
if (!item.isAttach) {
|
|
65
|
-
return (React.createElement(Item, { label: item === null || item === void 0 ? void 0 : item.label, key: index },
|
|
65
|
+
return (React.createElement(Item, { label: item === null || item === void 0 ? void 0 : item.label, key: index },
|
|
66
|
+
React.createElement("pre", { style: {
|
|
67
|
+
fontSize: '12px',
|
|
68
|
+
fontFamily: 'inherit',
|
|
69
|
+
overflow: 'hidden',
|
|
70
|
+
whiteSpace: 'pre-wrap',
|
|
71
|
+
wordBreak: 'break-all',
|
|
72
|
+
wordWrap: 'break-word',
|
|
73
|
+
} }, item === null || item === void 0 ? void 0 : item.content)));
|
|
66
74
|
}
|
|
67
75
|
return (React.createElement(Item, { label: item === null || item === void 0 ? void 0 : item.label, key: index }, item.content.length > 0 &&
|
|
68
76
|
item.content.map(function (item, index) {
|