diff --git a/src/app/submission/columns.tsx b/src/app/submission/columns.tsx index 112282c..3569ca4 100644 --- a/src/app/submission/columns.tsx +++ b/src/app/submission/columns.tsx @@ -11,6 +11,26 @@ const columnHelper = createColumnHelper() export const columns: ColumnDef[] = [ selectCol, + { + accessorFn: row => { + if (row.story) { + return row.story.title + } + return "RECORD DELETED" + }, + id: "story", + header: "Story" + }, + { + accessorFn: row => { + if (row.pub) { + return row.pub.title + } + return "RECORD DELETED" + }, + id: "pub", + header: "Publication" + }, { accessorFn: row => new Date(row.submitted), id: "submitted", @@ -57,26 +77,6 @@ export const columns: ColumnDef[] = [ id: "response", header: "Response" }, - { - accessorFn: row => { - if (row.pub) { - return row.pub.title - } - return "RECORD DELETED" - }, - id: "pub", - header: "Publication" - }, - { - accessorFn: row => { - if (row.story) { - return row.story.title - } - return "RECORD DELETED" - }, - id: "story", - header: "Story" - }, ] diff --git a/src/app/tailwind.css b/src/app/tailwind.css index 0ff5be1..c0fc71c 100644 --- a/src/app/tailwind.css +++ b/src/app/tailwind.css @@ -959,14 +959,6 @@ body { width: 100vw; } -.w-8 { - width: 2rem; -} - -.w-16 { - width: 4rem; -} - .min-w-\[8rem\] { min-width: 8rem; }