|
@@ -167,7 +167,7 @@ class projectOverview extends Component {
|
|
|
key: "serviceLife",
|
|
|
render: (text, record) => {
|
|
|
return (
|
|
|
-<div>{!!text && JSON.parse(text).toString()}</div>
|
|
|
+ <div>{!!text && JSON.parse(text).toString()}</div>
|
|
|
);
|
|
|
}
|
|
|
},
|
|
@@ -188,16 +188,16 @@ class projectOverview extends Component {
|
|
|
render: (text) => {
|
|
|
return (
|
|
|
<Tooltip title={text}>
|
|
|
- <div
|
|
|
- style={{
|
|
|
- width: 100,
|
|
|
- overflow: "hidden",
|
|
|
- whiteSpace: "nowrap",
|
|
|
- textOverflow: "ellipsis",
|
|
|
- }}
|
|
|
- >{text}</div>
|
|
|
+ <div
|
|
|
+ style={{
|
|
|
+ width: 100,
|
|
|
+ overflow: "hidden",
|
|
|
+ whiteSpace: "nowrap",
|
|
|
+ textOverflow: "ellipsis",
|
|
|
+ }}
|
|
|
+ >{text}</div>
|
|
|
</Tooltip>
|
|
|
- )
|
|
|
+ )
|
|
|
},
|
|
|
},
|
|
|
],
|