From de2d23ec8386fa0a36733fba4012c03b1bb43043 Mon Sep 17 00:00:00 2001 From: "pramod.mahajan" Date: Mon, 3 Nov 2025 12:52:10 +0530 Subject: [PATCH] added padding for table header --- .../AdvancePayment/AdvancePaymentList.jsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/components/AdvancePayment/AdvancePaymentList.jsx b/src/components/AdvancePayment/AdvancePaymentList.jsx index 0430b027..5f4681d5 100644 --- a/src/components/AdvancePayment/AdvancePaymentList.jsx +++ b/src/components/AdvancePayment/AdvancePaymentList.jsx @@ -110,9 +110,9 @@ const AdvancePaymentList = ({ employeeId }) => { ]; return ( -
+
- + {columns.map((col) => ( {columns.map((col) => ( - ))} ))} - + - +
@@ -125,7 +125,7 @@ const AdvancePaymentList = ({ employeeId }) => { {rowsWithBalance.map((row) => (
+ {col.key === "balance" || col.key === "credit" || col.key === "debit" @@ -133,15 +133,18 @@ const AdvancePaymentList = ({ employeeId }) => { style: "currency", currency: "INR", }) - : row[col.key]} + : (
+ Projec Name + {row[col.key]} +
)}
Final BalanceFinal Balance {currentBalance.toLocaleString("en-IN", { style: "currency",