added date for reviewed by
This commit is contained in:
parent
5ec938cce9
commit
c2028af191
@ -1,5 +1,6 @@
|
|||||||
import { useState } from "react";
|
import { useState } from "react";
|
||||||
import Avatar from "../common/Avatar";
|
import Avatar from "../common/Avatar";
|
||||||
|
import { formatUTCToLocalTime } from "../../utils/dateUtils";
|
||||||
|
|
||||||
const ExpenseStatusLogs = ({ data }) => {
|
const ExpenseStatusLogs = ({ data }) => {
|
||||||
const [visibleCount, setVisibleCount] = useState(4);
|
const [visibleCount, setVisibleCount] = useState(4);
|
||||||
@ -33,7 +34,7 @@ const ExpenseStatusLogs = ({ data }) => {
|
|||||||
<small className="text-secondary text-tiny ms-2">
|
<small className="text-secondary text-tiny ms-2">
|
||||||
<em>{log.action}</em>
|
<em>{log.action}</em>
|
||||||
</small>
|
</small>
|
||||||
<span className="text-tiny text-secondary d-block small">{log?.updateAt}</span>
|
<span className="text-tiny text-secondary d-block small">{formatUTCToLocalTime(log?.updateAt)}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="d-flex align-items-center text-muted small mt-1">
|
<div className="d-flex align-items-center text-muted small mt-1">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user