Skip to content

Commit

Permalink
Add comma separators for block numbers on homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
kylanhurt committed Oct 23, 2023
1 parent 5b9dde8 commit 82392a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/MapData.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default defineComponent({
<div class="col-3">
<div class="row">
<div class="col-12 text-subtitle1 text-weight-thin text-uppercase">Head Block</div>
<div class="col-12 text-subtitle1 text-bold">{{HeadBlock}}</div>
<div class="col-12 text-subtitle1 text-bold">{{HeadBlock.toLocaleString()}}</div>
</div>
</div>
<div class="col-1">
Expand All @@ -52,7 +52,7 @@ export default defineComponent({
<div class="col-3">
<div class="row">
<div class="col-12 text-subtitle1 text-weight-thin text-uppercase">Irreversible Block</div>
<div class="col-12 text-subtitle1 text-bold">{{lastIrreversibleBlock}}</div>
<div class="col-12 text-subtitle1 text-bold">{{lastIrreversibleBlock.toLocaleString()}}</div>
</div>
</div>
</div>
Expand Down

0 comments on commit 82392a1

Please sign in to comment.