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

@ -182,7 +182,7 @@ 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"
}; };