Skip to content

Commit

Permalink
[INLONG-11425][Dashboard] Data synchronization corrects the display p…
Browse files Browse the repository at this point in the history
…roblem of uncommitted data
  • Loading branch information
wohainilaodou committed Oct 28, 2024
1 parent 7d71de6 commit 0fadba7
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,14 @@ const Comp: React.FC<Props> = ({ inlongGroupId, inlongStreamId, ...modalProps })
]}
>
<div>
<Card title="headers" bordered={false} style={{ width: 700 }}>
<Card title="atrributes" bordered={false} style={{ width: 700 }}>
<p style={{ margin: 0 }}>{JSON.stringify(originalModal?.record['attribute'])}</p>
</Card>
<Card title="headers" bordered={false} style={{ width: 700, marginTop: 10 }}>
<p style={{ margin: 0 }}>{JSON.stringify(originalModal?.record['headers'])}</p>
</Card>
<Card title="body" bordered={false} style={{ width: 700, marginTop: 10 }}>
<p style={{ margin: 0 }}>{originalModal?.record['body']}</p>
<p style={{ margin: 0 }}>{originalModal?.record['preBody']}</p>
</Card>
</div>
</Modal>
Expand Down

0 comments on commit 0fadba7

Please sign in to comment.