From ef9abafda0bd9a4f2dad38ccbc6ac8ecd75cddeb Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Fri, 25 Jul 2025 15:46:31 +0100 Subject: [PATCH] feat: add live links to entries RecentEdits --- src/containers/RecentEdits.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/containers/RecentEdits.tsx b/src/containers/RecentEdits.tsx index 545d31e..9039244 100644 --- a/src/containers/RecentEdits.tsx +++ b/src/containers/RecentEdits.tsx @@ -1,11 +1,21 @@ import { RecentEditsDataTable } from "@/components/RecentEditsDataTable" import { useQuery } from "@tanstack/react-query" import api from "../api/eolas-api" +import { Link } from "react-router" const columns = [ { accessorKey: "title", header: "Title", + cell: ({ cell, row }) => { + return ( + + + {row.original.title} + + + ) + }, }, { accessorKey: "date",