UI updation at recurring expense.
This commit is contained in:
parent
081b042308
commit
b016f4a523
@ -83,7 +83,7 @@ const ViewRecurringExpense = ({ RecurringId }) => {
|
|||||||
>
|
>
|
||||||
Project :
|
Project :
|
||||||
</label>
|
</label>
|
||||||
<div className="text-muted">{data?.project?.name || "N/A"}</div>
|
<div className="text-muted" style={{ textAlign: "left" }}>{data?.project?.name || "N/A"}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -117,7 +117,7 @@ const ViewRecurringExpense = ({ RecurringId }) => {
|
|||||||
>
|
>
|
||||||
Title :
|
Title :
|
||||||
</label>
|
</label>
|
||||||
<div className="text-muted">{data?.title || "N/A"}</div>
|
<div className="text-muted" style={{ textAlign: "left" }}>{data?.title || "N/A"}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -131,7 +131,7 @@ const ViewRecurringExpense = ({ RecurringId }) => {
|
|||||||
>
|
>
|
||||||
Payee :
|
Payee :
|
||||||
</label>
|
</label>
|
||||||
<div className="text-muted">{data?.payee || "N/A"}</div>
|
<div className="text-muted" style={{ textAlign: "left" }}>{data?.payee || "N/A"}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -220,7 +220,7 @@ const ViewRecurringExpense = ({ RecurringId }) => {
|
|||||||
>
|
>
|
||||||
Updated At :
|
Updated At :
|
||||||
</label>
|
</label>
|
||||||
<div className="text-muted">
|
<div className="text-muted" style={{ textAlign: "left" }}>
|
||||||
{data?.updatedAt
|
{data?.updatedAt
|
||||||
? formatUTCToLocalTime(data.updatedAt, true)
|
? formatUTCToLocalTime(data.updatedAt, true)
|
||||||
: "N/A"}
|
: "N/A"}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user