Merge branch 'Service_Project_Managment' of https://git.marcoaiot.com/admin/marco.pms.web into Service_Project_Managment

This commit is contained in:
pramod.mahajan 2025-11-14 16:39:57 +05:30
commit 770123119c
2 changed files with 2 additions and 2 deletions

View File

@ -280,7 +280,7 @@ const PaymentRequestList = ({ filters, groupBy = "submittedBy", search }) => {
</td>
</tr>
{items?.map((paymentRequest) => (
<tr key={paymentRequest.id}>
<tr key={paymentRequest.id} style={{ height: "40px" }}>
{paymentRequestColumns.map(
(col) =>
(col.isAlwaysVisible || groupBy !== col.key) && (

View File

@ -203,7 +203,7 @@ const RecurringExpenseList = ({ search, filterStatuses }) => {
<tr
key={recurringExpense.id}
className="align-middle"
style={{ height: "50px" }}
style={{ height: "40px" }}
>
{recurringExpenseColumns.map((col) => (
<td