fix: weird column sizing issue for assignee (only happened in tauri)

This commit is contained in:
Oliver Bryan
2025-12-31 05:29:56 +00:00
parent 8024339bd3
commit a44265ff67

View File

@@ -52,7 +52,7 @@ export function IssuesTable({
<TableCell className="overflow-hide">{issueData.Issue.description}</TableCell> <TableCell className="overflow-hide">{issueData.Issue.description}</TableCell>
)} )}
{(columns.assignee == null || columns.assignee === true) && ( {(columns.assignee == null || columns.assignee === true) && (
<TableCell className={"w-[0px] text-center px-1 py-0"}> <TableCell className={"w-[1px] text-center px-1 py-0"}>
{issueData.User ? <Avatar user={issueData.User} size={6} /> : "?"} {issueData.User ? <Avatar user={issueData.User} size={6} /> : "?"}
</TableCell> </TableCell>
)} )}