From 394641f899a7dfa0c863a184882b3c89362204c3 Mon Sep 17 00:00:00 2001 From: Satyam Rastogi Date: Mon, 11 May 2026 17:00:24 +0530 Subject: [PATCH] budgest table add name and remove commited column --- src/pages/owner/OwnerProjectDetail.jsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/pages/owner/OwnerProjectDetail.jsx b/src/pages/owner/OwnerProjectDetail.jsx index 06f125f..73e3a23 100644 --- a/src/pages/owner/OwnerProjectDetail.jsx +++ b/src/pages/owner/OwnerProjectDetail.jsx @@ -561,7 +561,7 @@ const OwnerProjectDetail = () => { Add Cost -

Allocated vs Committed vs Actual ($k)

+

Allocated vs Actual ($k)

@@ -569,7 +569,6 @@ const OwnerProjectDetail = () => { } /> - @@ -580,8 +579,8 @@ const OwnerProjectDetail = () => { - {['Category', 'Allocated', 'Committed', 'Actual', 'Variance'].map(h => ( - + {['Name', 'Category', 'Allocated', 'Actual', 'Variance'].map(h => ( + ))} @@ -590,9 +589,9 @@ const OwnerProjectDetail = () => { const variance = b.actual - b.allocated; return ( + -
{h}{h}
{b.name || '—'} {b.category} {formatCurrency(b.allocated)}{formatCurrency(b.committed)} {formatCurrency(b.actual)} 0 ? 'text-[#ff4500]' : 'text-[#39ff14]'}`}> {variance > 0 ? '+' : ''}{formatCurrency(variance)}