From fb28f40dc84f4dcb6cbe847db4eb89c312c97a86 Mon Sep 17 00:00:00 2001 From: AbhinavGonthina Date: Mon, 23 Feb 2026 21:39:58 -0500 Subject: [PATCH] initial gantt chart filter spacing changes --- .../pages/GanttPage/GanttChart/GanttChart.tsx | 29 ++++++++++--------- .../GanttChart/GanttChartSection.tsx | 3 +- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/frontend/src/pages/GanttPage/GanttChart/GanttChart.tsx b/src/frontend/src/pages/GanttPage/GanttChart/GanttChart.tsx index 9e7c6c9805..4a1a665c9f 100644 --- a/src/frontend/src/pages/GanttPage/GanttChart/GanttChart.tsx +++ b/src/frontend/src/pages/GanttPage/GanttChart/GanttChart.tsx @@ -67,20 +67,21 @@ const GanttChart = ({ > - {collections.map((collection) => { - return collection.tasks ? ( - - ) : ( - <> - ); - })} + {collections + .filter((collection) => collection.tasks.length > 0) + .map((collection) => { + return ( + + ); + })} {currentWeekCol > 0 && ( ({ {tasks.map((task) => { return ( - +