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 7329596 commit e2582c5Copy full SHA for e2582c5
src/components/History/NetworkUpgradeSummary.tsx
@@ -48,11 +48,11 @@ const NetworkUpgradeSummary = ({ name }: NetworkUpgradeSummaryProps) => {
48
49
const blockTypeTranslation = (translationKey, explorerUrl, number) => {
50
return (
51
- <Flex>
+ <Flex whiteSpace='pre-wrap'>
52
<Emoji fontSize="sm" me={2} text=":bricks:" />
53
{t(translationKey)}:{" "}
54
<InlineLink to={`${explorerUrl}${number}`}>
55
- <span style={{ marginLeft: '4px' }}>{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}</span>
+ {new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}
56
</InlineLink>
57
</Flex>
58
)
0 commit comments