Skip to content

Commit 3bc5307

Browse files
author
Darren Kelly
committed
fix: extra dividers
1 parent e2f0cbc commit 3bc5307

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/views/Block.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
>{{txs.length}} {{txs.length>1?'transactions': 'transaction'}}</b-button>
7070
</b-col>
7171
</b-row>
72-
<hr />
72+
<hr v-if="block.baseFeePerGas" />
7373
<b-row v-if="block.baseFeePerGas">
7474
<b-col lg="2">
7575
<strong>Base Fee</strong>

src/views/Tx.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
<sup v-if="tx.gasPriceCoef">price coef {{tx.gasPriceCoef}}</sup>
107107
</b-col>
108108
</b-row>
109-
<hr />
109+
<hr v-if="tx.maxFeePerGas" />
110110
<b-row v-if="tx.maxFeePerGas">
111111
<b-col lg="2">
112112
<strong>Max Fee Per Gas</strong>
@@ -115,13 +115,13 @@
115115
<Amount class="mr-2" sym="VTHO" :dec="18">{{tx.maxFeePerGas}}</Amount>
116116
</b-col>
117117
</b-row>
118-
<hr />
118+
<hr v-if="tx.maxPriorityFeePerGas" />
119119
<b-row v-if="tx.maxPriorityFeePerGas">
120120
<b-col lg="2">
121121
<strong>Max Priority Fee Per Gas</strong>
122122
</b-col>
123123
<b-col lg="10">
124-
<Amount class="mr-2" sym="VTHO" :dec="18">{{tx.maxPriorityFeePerGas}}</Amount>
124+
<Amount class="mr-2" sym="VTHO" :dec="18">{{tx.ma}}</Amount>
125125
</b-col>
126126
</b-row>
127127
<hr />

0 commit comments

Comments
 (0)