diff --git a/web-ui/src/components/precedents/library-list-panel.tsx b/web-ui/src/components/precedents/library-list-panel.tsx index d87c3e1..38eaea8 100644 --- a/web-ui/src/components/precedents/library-list-panel.tsx +++ b/web-ui/src/components/precedents/library-list-panel.tsx @@ -1,6 +1,7 @@ "use client"; import { useState } from "react"; +import Link from "next/link"; import { Trash2, Plus, Pencil, Wand2 } from "lucide-react"; import { toast } from "sonner"; import { @@ -151,7 +152,9 @@ function CourtRow({ p, onEdit }: { p: Precedent; onEdit: (id: string) => void }) className="font-semibold text-navy text-right whitespace-normal break-words min-w-[280px] max-w-[420px] py-3" dir="rtl" > - {cleanCitation(p.case_number)} + + {cleanCitation(p.case_number)} +
{cleanCitation(p.case_name)}
@@ -233,7 +236,9 @@ function CommitteeRow({ p, onEdit }: { p: Precedent; onEdit: (id: string) => voi className="font-semibold text-navy text-right whitespace-normal break-words min-w-[200px] max-w-[320px] py-3" dir="rtl" > - {cleanCitation(p.case_number)} + + {cleanCitation(p.case_number)} +
{cleanCitation(p.case_name)}