fix: show status message in trace details v2 drawer (#8346)

This commit is contained in:
Shaheer Kochai 2025-06-24 20:06:36 +04:30 committed by GitHub
parent 525a0d7a1a
commit 00191d5774
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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">