Adding Some spacing in columns.

This commit is contained in:
Kartik Sharma 2025-11-05 12:40:17 +05:30
parent 2a46ac1349
commit 00f405069b
2 changed files with 10 additions and 10 deletions

View File

@ -50,14 +50,14 @@ const RecurringExpenseList = ({ search }) => {
{ {
key: "strikeDate", key: "strikeDate",
label: "Strike Date", label: "Strike Date",
align: "text-start", align: "text-center",
getValue: (e) => getValue: (e) =>
e?.strikeDate ? formatUTCToLocalTime(e.strikeDate) : "N/A", e?.strikeDate ? formatUTCToLocalTime(e.strikeDate) : "N/A",
}, },
{ {
key: "amount", key: "amount",
label: "Amount", label: "Amount",
align: "text-start", align: "text-end",
getValue: (e) => getValue: (e) =>
e?.amount e?.amount
? `${e?.currency?.symbol || ""}${e.amount.toLocaleString()}` ? `${e?.currency?.symbol || ""}${e.amount.toLocaleString()}`
@ -81,7 +81,7 @@ const RecurringExpenseList = ({ search }) => {
{ {
key: "latestPRGeneratedAt", key: "latestPRGeneratedAt",
label: "Last Generation Date", label: "Last Generation Date",
align: "text-start", align: "text-center",
getValue: (e) => getValue: (e) =>
e?.latestPRGeneratedAt e?.latestPRGeneratedAt
? formatUTCToLocalTime(e.latestPRGeneratedAt) ? formatUTCToLocalTime(e.latestPRGeneratedAt)
@ -90,7 +90,7 @@ const RecurringExpenseList = ({ search }) => {
{ {
key: "createdAt", key: "createdAt",
label: "Next Generation Date", label: "Next Generation Date",
align: "text-start", align: "text-center",
getValue: (e) => getValue: (e) =>
e?.createdAt ? formatUTCToLocalTime(e.createdAt) : "N/A", e?.createdAt ? formatUTCToLocalTime(e.createdAt) : "N/A",
}, },

View File

@ -159,10 +159,10 @@ export const PROJECT_STATUS = [
export const EXPENSE_STATUS = { export const EXPENSE_STATUS = {
daft:"297e0d8f-f668-41b5-bfea-e03b354251c8", daft: "297e0d8f-f668-41b5-bfea-e03b354251c8",
review_pending:"6537018f-f4e9-4cb3-a210-6c3b2da999d7", review_pending: "6537018f-f4e9-4cb3-a210-6c3b2da999d7",
payment_pending:"f18c5cfd-7815-4341-8da2-2c2d65778e27", payment_pending: "f18c5cfd-7815-4341-8da2-2c2d65778e27",
approve_pending:"4068007f-c92f-4f37-a907-bc15fe57d4d8", approve_pending: "4068007f-c92f-4f37-a907-bc15fe57d4d8",
} }
@ -182,8 +182,8 @@ export const FREQUENCY_FOR_RECURRING = {
1: "Quarterly", 1: "Quarterly",
2: "Half-Yearly", 2: "Half-Yearly",
3: "Yearly", 3: "Yearly",
4:"Dailty", 4: "Daily",
5:"Weekly" 5: "Weekly"
}; };