Skip to content

Commit

Permalink
fix: Show accounts created in genesis block (#839)
Browse files Browse the repository at this point in the history
  • Loading branch information
janmichek authored Jun 17, 2024
1 parent ee24ece commit 5b77b20
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/KeyblockDetailsPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
<pagination-button
class="keyblock-details-panel__button--prev"
direction="left"
:disabled="keyblockDetails.height === 0"
@click="$router.push(`/keyblocks/${keyblockDetails.height - 1}`)"/>

{{ keyblockDetails.height }}
Expand Down Expand Up @@ -107,7 +108,7 @@
Beneficiary Reward
</th>
<td>
{{ formatAePrice(keyblockDetails.blockReward, null) }}
{{ formatNullable(formatAePrice(keyblockDetails.blockReward, null)) }}
</td>
</tr>
<tr class="keyblock-details-panel__row">
Expand All @@ -118,7 +119,7 @@
BRI Reward
</th>
<td>
{{ formatAePrice(keyblockDetails.devReward, null) }}
{{ formatNullable(formatAePrice(keyblockDetails.devReward, null)) }}
</td>
</tr>
<tr class="keyblock-details-panel__row">
Expand Down

0 comments on commit 5b77b20

Please sign in to comment.