Adding Some spacing in columns.
This commit is contained in:
parent
2a46ac1349
commit
00f405069b
@ -50,14 +50,14 @@ const RecurringExpenseList = ({ search }) => {
|
||||
{
|
||||
key: "strikeDate",
|
||||
label: "Strike Date",
|
||||
align: "text-start",
|
||||
align: "text-center",
|
||||
getValue: (e) =>
|
||||
e?.strikeDate ? formatUTCToLocalTime(e.strikeDate) : "N/A",
|
||||
},
|
||||
{
|
||||
key: "amount",
|
||||
label: "Amount",
|
||||
align: "text-start",
|
||||
align: "text-end",
|
||||
getValue: (e) =>
|
||||
e?.amount
|
||||
? `${e?.currency?.symbol || ""}${e.amount.toLocaleString()}`
|
||||
@ -81,7 +81,7 @@ const RecurringExpenseList = ({ search }) => {
|
||||
{
|
||||
key: "latestPRGeneratedAt",
|
||||
label: "Last Generation Date",
|
||||
align: "text-start",
|
||||
align: "text-center",
|
||||
getValue: (e) =>
|
||||
e?.latestPRGeneratedAt
|
||||
? formatUTCToLocalTime(e.latestPRGeneratedAt)
|
||||
@ -90,7 +90,7 @@ const RecurringExpenseList = ({ search }) => {
|
||||
{
|
||||
key: "createdAt",
|
||||
label: "Next Generation Date",
|
||||
align: "text-start",
|
||||
align: "text-center",
|
||||
getValue: (e) =>
|
||||
e?.createdAt ? formatUTCToLocalTime(e.createdAt) : "N/A",
|
||||
},
|
||||
|
||||
@ -159,10 +159,10 @@ export const PROJECT_STATUS = [
|
||||
|
||||
|
||||
export const EXPENSE_STATUS = {
|
||||
daft:"297e0d8f-f668-41b5-bfea-e03b354251c8",
|
||||
review_pending:"6537018f-f4e9-4cb3-a210-6c3b2da999d7",
|
||||
payment_pending:"f18c5cfd-7815-4341-8da2-2c2d65778e27",
|
||||
approve_pending:"4068007f-c92f-4f37-a907-bc15fe57d4d8",
|
||||
daft: "297e0d8f-f668-41b5-bfea-e03b354251c8",
|
||||
review_pending: "6537018f-f4e9-4cb3-a210-6c3b2da999d7",
|
||||
payment_pending: "f18c5cfd-7815-4341-8da2-2c2d65778e27",
|
||||
approve_pending: "4068007f-c92f-4f37-a907-bc15fe57d4d8",
|
||||
|
||||
}
|
||||
|
||||
@ -182,8 +182,8 @@ export const FREQUENCY_FOR_RECURRING = {
|
||||
1: "Quarterly",
|
||||
2: "Half-Yearly",
|
||||
3: "Yearly",
|
||||
4:"Dailty",
|
||||
5:"Weekly"
|
||||
4: "Daily",
|
||||
5: "Weekly"
|
||||
};
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user