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

This commit is contained in:
Fadli 2023-01-11 03:24:04 +07:00
commit ac8641b9d3
2 changed files with 3 additions and 3 deletions

View File

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

View File

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