feat: enhance BoardApprovalsPanel with detailed approval views and chart integration

This commit is contained in:
Abhimanyu Saharan
2026-02-06 02:17:32 +05:30
parent fe3bfade92
commit 574800e5a9
6 changed files with 1038 additions and 301 deletions

View File

@@ -7,7 +7,6 @@ interface TaskCardProps {
priority?: string;
assignee?: string;
due?: string;
approvalsCount?: number;
approvalsPendingCount?: number;
onClick?: () => void;
draggable?: boolean;
@@ -21,7 +20,6 @@ export function TaskCard({
priority,
assignee,
due,
approvalsCount = 0,
approvalsPendingCount = 0,
onClick,
draggable = false,