Compare commits

...
Author SHA1 Message Date
Edd e3d3ee81dd fix(explorer,trading): asset details should show quantum in asset dps 2023-03-10 15:27:18 +00:00
+1 -1
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,