shrink "id" column to fit id size

This commit is contained in:
Oliver Bryan
2025-12-14 18:34:36 +00:00
parent 24e722fd4d
commit e5d2c6fbf5

View File

@@ -13,7 +13,7 @@ export function IssuesTable({
<TableHeader>
<TableRow>
{(columns.id == null || columns.id === true) && (
<TableHead className="w-[50px] border-r">ID</TableHead>
<TableHead className="w-[0px] border-r">ID</TableHead>
)}
{(columns.title == null || columns.title === true) && <TableHead>Title</TableHead>}
{(columns.description == null || columns.description === true) && (