Commit 0063a340 authored by 陈前坚's avatar 陈前坚

perf: 优化运维痕迹操作信息展示

parent e3541057
...@@ -53,13 +53,13 @@ const OmsLog = () => { ...@@ -53,13 +53,13 @@ const OmsLog = () => {
width: 360, width: 360,
}, },
{ {
title: '操作对象信息', title: '操作信息',
dataIndex: 'shortInfo', dataIndex: 'shortInfo',
key: 'shortInfo', key: 'shortInfo',
ellipsis: 'true', ellipsis: 'true',
render: record => ( render: record => (
<Tooltip placement="left" title={record}> <Tooltip placement="left" title={decodeURI(record)}>
{record} {decodeURI(record)}
</Tooltip> </Tooltip>
), ),
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment