From 1f94bfab8db0033bc843f4db05ab0068ab9c2d01 Mon Sep 17 00:00:00 2001 From: null Date: Wed, 20 May 2026 02:56:56 -0500 Subject: [PATCH] =?UTF-8?q?fix(ui):=20reorder=20issue=20columns=20?= =?UTF-8?q?=E2=80=94=20labels=20+=20updated=20before=20author,=20responsiv?= =?UTF-8?q?e=20audit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/app/git-projects/repositories/page.tsx | 2 +- .../src/components/git/ForgejoIssuesTable.tsx | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/frontend/src/app/git-projects/repositories/page.tsx b/frontend/src/app/git-projects/repositories/page.tsx index c2d1609..43aaef5 100644 --- a/frontend/src/app/git-projects/repositories/page.tsx +++ b/frontend/src/app/git-projects/repositories/page.tsx @@ -53,7 +53,7 @@ export default function ForgejoRepositoriesPage() { if (auth.isSignedIn) { fetchRepositories(); } - }, [auth.isSignedIn, auth.getToken]); + }, [auth.isSignedIn]); const repositoryName = (repository: ForgejoRepository) => repository.display_name || `${repository.owner}/${repository.repo}`; diff --git a/frontend/src/components/git/ForgejoIssuesTable.tsx b/frontend/src/components/git/ForgejoIssuesTable.tsx index e43e74d..5b33a68 100644 --- a/frontend/src/components/git/ForgejoIssuesTable.tsx +++ b/frontend/src/components/git/ForgejoIssuesTable.tsx @@ -130,15 +130,6 @@ export function ForgejoIssuesTable({ ); }, }, - { - accessorKey: "author", - header: "Author", - cell: ({ row }) => ( - - {row.original.author || "Unknown"} - - ), - }, { accessorKey: "labels", header: "Labels", @@ -161,6 +152,15 @@ export function ForgejoIssuesTable({ ); }, }, + { + accessorKey: "author", + header: "Author", + cell: ({ row }) => ( + + {row.original.author || "Unknown"} + + ), + }, { accessorKey: "forgejo_updated_at", header: "Updated",