mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 16:07:10 +00:00
fix: show status message in trace details v2 drawer (#8346)
This commit is contained in:
parent
525a0d7a1a
commit
00191d5774
@ -192,6 +192,19 @@ function SpanDetailsDrawer(props: ISpanDetailsDrawerProps): JSX.Element {
|
|||||||
</Typography.Text>
|
</Typography.Text>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{selectedSpan.statusMessage && (
|
||||||
|
<div className="item">
|
||||||
|
<Typography.Text className="attribute-key">
|
||||||
|
status message
|
||||||
|
</Typography.Text>
|
||||||
|
<div className="value-wrapper">
|
||||||
|
<Typography.Text className="attribute-value">
|
||||||
|
{selectedSpan.statusMessage}
|
||||||
|
</Typography.Text>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<Button onClick={onLogsHandler} className="related-logs">
|
<Button onClick={onLogsHandler} className="related-logs">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user