diff --git a/packages/frontend/src/components/issues-table.tsx b/packages/frontend/src/components/issues-table.tsx
index 065cd29..4180848 100644
--- a/packages/frontend/src/components/issues-table.tsx
+++ b/packages/frontend/src/components/issues-table.tsx
@@ -11,9 +11,9 @@ export function IssuesTable({
return (
-
+
{(columns.id == null || columns.id === true) && (
- ID
+ ID
)}
{(columns.title == null || columns.title === true) && Title}
{(columns.description == null || columns.description === true) && (
diff --git a/packages/frontend/src/components/ui/table.tsx b/packages/frontend/src/components/ui/table.tsx
index af83329..dc7f5ee 100644
--- a/packages/frontend/src/components/ui/table.tsx
+++ b/packages/frontend/src/components/ui/table.tsx
@@ -30,12 +30,17 @@ function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) {
);
}
-function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
+function TableRow({
+ className,
+ hoverEffect = true,
+ ...props
+}: React.ComponentProps<"tr"> & { hoverEffect?: boolean }) {
return (
|