Skip to content

Commit fb5989d

Browse files
author
lukaw3d
committed
Fix tx details display (remove "0" breaking the table structure)
1 parent d04b9d9 commit fb5989d

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

.changelog/2364.trivial.md

Whitespace-only changes.

src/app/pages/ConsensusTransactionDetailPage/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export const ConsensusTransactionDetailView: FC<{
204204
<dd>{transaction.gas_used ? transaction.gas_used.toLocaleString() : t('common.missing')}</dd>
205205
</AdvancedField>
206206

207-
{transaction.gas_limit && (
207+
{!!transaction.gas_limit && (
208208
<AdvancedField>
209209
<dt>{t('common.gasLimit')}</dt>
210210
<dd>

0 commit comments

Comments
 (0)