Skip to content

Commit 7329596

Browse files
committed
Fix #12101: Bug: missing space in history entries
1 parent fec8acd commit 7329596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/History/NetworkUpgradeSummary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const NetworkUpgradeSummary = ({ name }: NetworkUpgradeSummaryProps) => {
5252
<Emoji fontSize="sm" me={2} text=":bricks:" />
5353
{t(translationKey)}:{" "}
5454
<InlineLink to={`${explorerUrl}${number}`}>
55-
{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}
55+
<span style={{ marginLeft: '4px' }}>{new Intl.NumberFormat(localeForStatsBoxNumbers).format(number)}</span>
5656
</InlineLink>
5757
</Flex>
5858
)

0 commit comments

Comments
 (0)