This commit is contained in:
a.bouhuolia
2021-03-08 14:53:18 +02:00
17 changed files with 39 additions and 24 deletions

View File

@@ -89,7 +89,7 @@ export function ActionsCell(props) {
* Total amount accessor.
*/
export function TotalAmountAccessor(row) {
return <Money amount={row.total_amount} currency={'USD'} />;
return <Money amount={row.total_amount} currency={row.currency_code} />;
}
/**