fix(explorer,trading): asset details should show quantum in asset dps (#3158)

This commit is contained in:
Edd 2023-03-10 16:14:36 +00:00 committed by GitHub
parent 1040077c2b
commit 4205dd471a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ export const rows: Rows = [
key: AssetDetail.QUANTUM,
label: t('Quantum'),
tooltip: t('The minimum economically meaningful amount of the asset'),
value: (asset) => asset.quantum,
value: (asset) => num(asset, asset.quantum),
},
{
key: AssetDetail.STATUS,