Skip to content

Commit

Permalink
feat(frontend): add build number to session replay attr display
Browse files Browse the repository at this point in the history
closes #1829
  • Loading branch information
anupcowkur committed Feb 24, 2025
1 parent 4e7fc14 commit 8490a40
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function Session({ params }: { params: { teamId: string, appId: s
<p className="font-sans"> User ID: {sessionReplay.attribute.user_id !== "" ? sessionReplay.attribute.user_id : "N/A"}</p>
<p className="font-sans"> Duration: {formatMillisToHumanReadable(sessionReplay.duration as unknown as number)}</p>
<p className="font-sans"> Device: {sessionReplay.attribute.device_manufacturer + sessionReplay.attribute.device_model}</p>
<p className="font-sans"> App version: {sessionReplay.attribute.app_version}</p>
<p className="font-sans"> App version: {sessionReplay.attribute.app_version} ({sessionReplay.attribute.app_build})</p>
<p className="font-sans"> Network type: {sessionReplay.attribute.network_type}</p>
<div className="py-6" />
<SessionReplay teamId={params.teamId} appId={params.appId} sessionReplay={sessionReplay} />
Expand Down

0 comments on commit 8490a40

Please sign in to comment.