From e1e4187ded039a3c741cb19a8aa00f5e9c799a2d Mon Sep 17 00:00:00 2001 From: chamiakJ Date: Mon, 7 Jul 2025 07:20:45 +0530 Subject: [PATCH] refactor(TaskRow): improve layout and styling for task indicators and subtasks - Enhanced the layout of the TaskRow component to ensure better spacing and alignment for task indicators and subtasks. - Updated CSS classes to prevent compression of elements and maintain consistent visual presentation. - Improved tooltip functionality for task display names and indicators, ensuring better accessibility and user experience. --- .../src/components/task-list-v2/TaskRow.tsx | 102 +++++++++--------- 1 file changed, 48 insertions(+), 54 deletions(-) diff --git a/worklenz-frontend/src/components/task-list-v2/TaskRow.tsx b/worklenz-frontend/src/components/task-list-v2/TaskRow.tsx index 61673d2b..91e88d5b 100644 --- a/worklenz-frontend/src/components/task-list-v2/TaskRow.tsx +++ b/worklenz-frontend/src/components/task-list-v2/TaskRow.tsx @@ -292,15 +292,15 @@ const TaskRow: React.FC = memo(({ taskId, projectId, visibleColumn case 'title': return (
-
+
{/* Indentation for subtasks - tighter spacing */} - {isSubtask &&
} + {isSubtask &&
} {/* Expand/Collapse button - only show for parent tasks */} {!isSubtask && (