diff --git a/packages/frontend/src/components/issues-table.tsx b/packages/frontend/src/components/issues-table.tsx index a26b534..9220ded 100644 --- a/packages/frontend/src/components/issues-table.tsx +++ b/packages/frontend/src/components/issues-table.tsx @@ -18,18 +18,20 @@ export function IssuesTable({ className: string; }) { return ( - +
{(columns.id == null || columns.id === true) && ( - ID + ID )} {(columns.title == null || columns.title === true) && Title} {(columns.description == null || columns.description === true) && ( Description )} {/* below is kept blank to fill the space, used as the "Assignee" column */} - {(columns.assignee == null || columns.assignee === true) && } + {(columns.assignee == null || columns.assignee === true) && ( + + )} @@ -47,25 +49,25 @@ export function IssuesTable({ )} {(columns.title == null || columns.title === true) && ( - - + +
{(columns.status == null || columns.status === true) && ( )} - {issueData.Issue.title} - + {issueData.Issue.title} +
)} {(columns.description == null || columns.description === true) && ( - {issueData.Issue.description} + {issueData.Issue.description} )} {(columns.assignee == null || columns.assignee === true) && ( - + {issueData.Assignees && issueData.Assignees.length > 0 && ( -
+
{issueData.Assignees.slice(0, 3).map((assignee) => ( - +