Skip to content

Commit

Permalink
log use stringify
Browse files Browse the repository at this point in the history
  • Loading branch information
bluewang committed Dec 6, 2023
1 parent e448f60 commit 69c0018
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ export const getTableColumns = [
dataIndex: 'body',
ellipsis: true,
render: body => (
<Tooltip placement="topLeft" title={body}>
{body}
<Tooltip placement="topLeft" title={JSON.stringify(body)}>
{JSON.stringify(body)}
</Tooltip>
),
},
Expand Down

0 comments on commit 69c0018

Please sign in to comment.