From 4fa739d8874cad563b952af581928a6a36dd7096 Mon Sep 17 00:00:00 2001 From: iliya Date: Wed, 11 Mar 2026 19:17:59 +0200 Subject: [PATCH] refactor: simplify KanbanGridLayout and update KanbanTaskCard accessibility - Removed padding from the main div in KanbanGridLayout for a cleaner layout. - Updated aria-label and button text in KanbanTaskCard to improve clarity and user experience when disapproving tasks. --- src/renderer/components/team/kanban/KanbanGridLayout.tsx | 4 ++-- src/renderer/components/team/kanban/KanbanTaskCard.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderer/components/team/kanban/KanbanGridLayout.tsx b/src/renderer/components/team/kanban/KanbanGridLayout.tsx index 4e4d84f3..2b6cf392 100644 --- a/src/renderer/components/team/kanban/KanbanGridLayout.tsx +++ b/src/renderer/components/team/kanban/KanbanGridLayout.tsx @@ -116,7 +116,7 @@ const LoadingKanbanGridLayout = ({ : buildDefaultItems(columns.length > 0 ? columns.map((column) => column.id) : ['todo']); return ( -
+
+
{ e.stopPropagation(); onMoveBackToDone(task.id); }} > - Move back to DONE + Disapprove ) : null}