diff --git a/ui/src/components/KanbanBoard.tsx b/ui/src/components/KanbanBoard.tsx index 96750558..92510384 100644 --- a/ui/src/components/KanbanBoard.tsx +++ b/ui/src/components/KanbanBoard.tsx @@ -63,16 +63,22 @@ function KanbanColumn({ }) { const { setNodeRef, isOver } = useDroppable({ id: status }); + const isEmpty = issues.length === 0; + return ( -
-
+
+
- - {statusLabel(status)} - - - {issues.length} - + {(!isEmpty || isOver) && ( + <> + + {statusLabel(status)} + + + {issues.length} + + + )}