WIP: Linking in document list. Working on copying relationships to new sessions

This commit is contained in:
2025-06-27 17:52:57 -07:00
parent 93536b0ac2
commit 611eaca5b6
15 changed files with 281 additions and 52 deletions

View File

@@ -1,3 +1,4 @@
import { FormattedDate } from "@/components/FormattedDate";
import type { Session } from "@/lib/types";
import { Link } from "@tanstack/react-router";
@@ -9,7 +10,7 @@ export const SessionRow = ({ session }: { session: Session }) => {
params={{ documentId: session.id }}
className="block font-semibold text-lg text-slate-300"
>
{session.created}
<FormattedDate date={session.created} />
</Link>
<div className="">{session.data.session.strongStart}</div>
</div>