feat: session replay

* wip

* wip

* wip

* wip

* final fixes

* comments

* fix
This commit is contained in:
Carl-Gerhard Lindesvärd
2026-02-26 14:09:53 +01:00
committed by GitHub
parent 38d9b65ec8
commit aa81bbfe77
67 changed files with 3059 additions and 556 deletions

View File

@@ -89,7 +89,7 @@ export function useColumns() {
projectId: row.original.projectId,
});
}}
className="font-medium"
className="font-medium hover:underline"
>
{renderName()}
</button>
@@ -144,10 +144,21 @@ export function useColumns() {
{
accessorKey: 'sessionId',
header: 'Session ID',
size: 320,
size: 100,
meta: {
hidden: true,
},
cell({ row }) {
const { sessionId } = row.original;
return (
<ProjectLink
href={`/sessions/${encodeURIComponent(sessionId)}`}
className="whitespace-nowrap font-medium hover:underline"
>
{sessionId.slice(0,6)}
</ProjectLink>
);
},
},
{
accessorKey: 'deviceId',