We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae2996b commit 2f2b592Copy full SHA for 2f2b592
src/app/components/RuntimeEvents/RuntimeEventDetails.tsx
@@ -131,8 +131,13 @@ const EvmEventParamData: FC<{
131
<AccountLink address={address} scope={scope} alwaysTrimOnTablet={alwaysTrimOnTable} />
132
) : null
133
case 'uint256':
134
- // TODO: format with BigNumber
135
- return <span>{param.value as string}</span>
+ return (
+ <span>
136
+ {t('common.valueLong', {
137
+ ...getPreciseNumberFormat(param.value as string),
138
+ })}
139
+ </span>
140
+ )
141
default:
142
return <span>{JSON.stringify(param.value, null, ' ')}</span>
143
}
0 commit comments