We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3055c5 + 453fd3f commit c3b9766Copy full SHA for c3b9766
2 files changed
.changelog/2265.trivial.md
@@ -0,0 +1 @@
1
+Fix block details display (remove "0" breaking the table structure)
src/app/pages/ConsensusBlockDetailPage/index.tsx
@@ -161,7 +161,7 @@ export const ConsensusBlockDetailView: FC<{
161
</>
162
)}
163
164
- {block.gas_limit && (
+ {!!block.gas_limit && (
165
<>
166
<dt>{t('common.gasLimit')}</dt>
167
<dd>
0 commit comments