Skip to content

Commit

Permalink
Merge pull request #4075 from LiskHQ/4074-last-forged-block-dark-mode
Browse files Browse the repository at this point in the history
Fixed last forged block default value display in dark mode - Closes #4074
  • Loading branch information
ManuGowda authored Jan 18, 2022
2 parents 0cceb77 + 918cff8 commit 59cf59d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,9 @@ const PerformanceView = ({
>
{data.lastForgedHeight}
</NavLink>
) : '-'}
) : (
<span className={styles.performanceValue}>-</span>
)}
</Item>
<Item
title={t('Forged blocks')}
Expand Down

0 comments on commit 59cf59d

Please sign in to comment.