fix: failed reason
This commit is contained in:
parent
e83ab369b9
commit
628a771e0c
|
@ -221,13 +221,18 @@ export const DetailUser = observer(() => {
|
||||||
key: "partner_transaction_code",
|
key: "partner_transaction_code",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Transaction Date",
|
title: "Tanggal Transaksi",
|
||||||
dataIndex: "created_at",
|
dataIndex: "created_at",
|
||||||
key: "created_at",
|
key: "created_at",
|
||||||
render: (text, record) => {
|
render: (text, record) => {
|
||||||
return <Text>{format(parseISO(record.created_at), "dd-MM-yyyy")}</Text>;
|
return <Text>{format(parseISO(record.created_at), "dd-MM-yyyy")}</Text>;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Alasan Gagal",
|
||||||
|
dataIndex: "failed_reason",
|
||||||
|
key: "failed_reason",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const routeData = [
|
const routeData = [
|
||||||
|
|
|
@ -177,13 +177,18 @@ export const Profile = observer(() => {
|
||||||
key: "partner_transaction_code",
|
key: "partner_transaction_code",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Transaction Date",
|
title: "Tanggal Transaksi",
|
||||||
dataIndex: "created_at",
|
dataIndex: "created_at",
|
||||||
key: "created_at",
|
key: "created_at",
|
||||||
render: (text, record) => {
|
render: (text, record) => {
|
||||||
return <Text>{format(parseISO(record.created_at), "dd-MM-yyyy")}</Text>;
|
return <Text>{format(parseISO(record.created_at), "dd-MM-yyyy")}</Text>;
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: "Alasan Gagal",
|
||||||
|
dataIndex: "failed_reason",
|
||||||
|
key: "failed_reason",
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const styleSaldoTitle = store.ui.mediaQuery.isDesktop
|
const styleSaldoTitle = store.ui.mediaQuery.isDesktop
|
||||||
|
|
Loading…
Reference in New Issue
Block a user