Commit 59b01923 authored by dev0tion's avatar dev0tion

Set default balances

parent 10a5a6b2
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<h5>Active balance</h5> <h5>Active balance</h5>
<p class="lead"> <p class="lead">
<!--<strong><span class="h2">29</span>.76500293</strong>--> <!--<strong><span class="h2">29</span>.76500293</strong>-->
<strong>{{ confirmedBalance | coinNotation }}</strong> <strong>{{ (confirmedBalance | coinNotation) || (0 | coinNotation) }}</strong>
<small class="text-uppercase"> {{ coinUnit }}</small> <small class="text-uppercase"> {{ coinUnit }}</small>
</p> </p>
</div> </div>
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<div class="col-xs-12 col-md-4 text-left"> <div class="col-xs-12 col-md-4 text-left">
<h5>Unconfirmed balance</h5> <h5>Unconfirmed balance</h5>
<p class="lead"> <p class="lead">
<strong>{{ unconfirmedBalance | coinNotation }}</strong> <strong>{{ (unconfirmedBalance | coinNotation) || (0 | coinNotation) }}</strong>
<small class="text-uppercase"> {{ coinUnit }}</small> <small class="text-uppercase"> {{ coinUnit }}</small>
</p> </p>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment