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

This commit is contained in:
Fadli 2023-01-11 10:41:55 +07:00
commit f996f63a90
2 changed files with 2 additions and 2 deletions

View File

@ -307,7 +307,7 @@ export const DetailUser = observer(() => {
render: (text, record) => { render: (text, record) => {
return ( return (
<Text> <Text>
{moment(record.created_at.toLocaleString('en-GB', { timeZone: "Asia/Jakarta" })).format("MM-DD-YYYY HH:mm:ss")} {moment(record.created_at.toLocaleString('en-GB')).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>
{moment(record.created_at.toLocaleString('en-GB', { timeZone: "Asia/Jakarta" })).format("MM-DD-YYYY HH:mm:ss")} {moment(record.created_at.toLocaleString('en-GB')).format("MM-DD-YYYY HH:mm:ss")}
</Text> </Text>
); );
}, },