From 575438e974c532ce96c92d452a94355a51ed17c0 Mon Sep 17 00:00:00 2001 From: PxlLoewe <72106766+PxlLoewe@users.noreply.github.com> Date: Sun, 27 Jul 2025 14:17:35 -0700 Subject: [PATCH] link zu neuem Report auf Admin-seite --- apps/hub/app/(app)/admin/report/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/hub/app/(app)/admin/report/page.tsx b/apps/hub/app/(app)/admin/report/page.tsx index 2d15828f..7d04829a 100644 --- a/apps/hub/app/(app)/admin/report/page.tsx +++ b/apps/hub/app/(app)/admin/report/page.tsx @@ -1,6 +1,8 @@ "use client"; import { PaginatedTable } from "_components/PaginatedTable"; import { reportColumns } from "(app)/admin/report/columns"; +import { TriangleAlert } from "lucide-react"; +import Link from "next/link"; export default function ReportPage() { return ( @@ -12,6 +14,18 @@ export default function ReportPage() { Sender: true, Reported: true, }} + leftOfSearch={ +
+
+ + + +
+ } columns={reportColumns} /> );