fix: \{{ taxPaidGes }}\ and \{{ profit }}\ render empty during async load (#330)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c6f25c98ab
commit
57903329bf
1 changed files with 2 additions and 2 deletions
|
|
@ -38,11 +38,11 @@
|
|||
<div class="profit-stats-wrapper">
|
||||
<div class="profit-stats-item">
|
||||
<div><b>Tax Paid</b></div>
|
||||
<div>{{ taxPaidGes }} $KRK</div>
|
||||
<div>{{ taxPaidGes ?? '...' }} $KRK</div>
|
||||
</div>
|
||||
<div class="profit-stats-item">
|
||||
<div><b>Issuance Earned</b></div>
|
||||
<div>{{ profit }} $KRK</div>
|
||||
<div>{{ profit ?? '...' }} $KRK</div>
|
||||
</div>
|
||||
<div class="profit-stats-item profit-stats-total">
|
||||
<div><b>Total</b></div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue