mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
fix: Session Replay tab not shown if no session source configured for trace (#702)
Ref: HDX-1496
This commit is contained in:
parent
2d6b5591a4
commit
50440835eb
2 changed files with 6 additions and 1 deletions
5
.changeset/strange-olives-rest.md
Normal file
5
.changeset/strange-olives-rest.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
Session Replay tab for traces is disabled unless the source is configured with a sessionId
|
||||
|
|
@ -275,7 +275,7 @@ export default function DBRowSidePanel({
|
|||
text: 'Surrounding Context',
|
||||
value: Tab.Context,
|
||||
},
|
||||
...(rumSessionId != null
|
||||
...(rumSessionId != null && source.sessionSourceId
|
||||
? [
|
||||
{
|
||||
text: 'Session Replay',
|
||||
|
|
|
|||
Loading…
Reference in a new issue