From f3523a9a83accafb9bc747cb307dc0efb099583b Mon Sep 17 00:00:00 2001
From: Oliver Bryan <04oliverbryan@gmail.com>
Date: Sat, 17 Jan 2026 01:32:32 +0000
Subject: [PATCH] fixed truncation issues with long issue titles
---
.../frontend/src/components/issues-table.tsx | 22 ++++++++++---------
packages/frontend/src/pages/App.tsx | 2 +-
2 files changed, 13 insertions(+), 11 deletions(-)
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) => (
-
+