Browse Source

fix: fixed format day

pull/1/head
Watiah11 5 months ago
parent
commit
4562195c56
  1. 2
      src/views/SimproV2/ReferralCode/index.js

2
src/views/SimproV2/ReferralCode/index.js

@ -354,7 +354,7 @@ const ProjectType = ({ params, ...props }) => {
<td>{n.code}</td> <td>{n.code}</td>
<td>{n.type}</td> <td>{n.type}</td>
<td>{toRupiah(n.amount)}</td> <td>{toRupiah(n.amount)}</td>
<td>{n?.exp ? moment(n.exp).format('DD-MM-YYYY HH:mm') : "-"}</td> <td>{n?.exp ? moment(n.exp).format('DD MMMM, YYYY') : "-"}</td>
<td>{n.allocation ? n.allocation : "-"}</td> <td>{n.allocation ? n.allocation : "-"}</td>
<td>{n.description ? n.description : "-"}</td> <td>{n.description ? n.description : "-"}</td>
</tr> </tr>

Loading…
Cancel
Save