Merge branch 'main' of https://gitlab.com/empatnusabangsa/ppob/ppob-frontend into devops-production

This commit is contained in:
Fadli 2023-01-11 03:25:38 +07:00
commit c32de83734
2 changed files with 3 additions and 3 deletions

View File

@ -307,7 +307,7 @@ export const DetailUser = observer(() => {
render: (text, record) => {
return (
<Text>
{format(parseISO(record.created_at), "MM-dd-yyyy HH:mm:ss")}
{moment(record.created_at).format( "MM-DD-yyyy HH:mm:ss")}
</Text>
);
},

View File

@ -238,7 +238,7 @@ export const Profile = observer(() => {
render: (text, record) => {
return (
<Text>
{format(parseISO(record.created_at), "dd-MM-yyyy HH:mm:ss")}
{moment(record.created_at).format( "MM-DD-yyyy HH:mm:ss")}
</Text>
);
},