Skip to content

Commit

Permalink
[@dhealthdapps/frontend] fix(screens): add correct pointer to amount …
Browse files Browse the repository at this point in the history
…value
  • Loading branch information
kravchenkodhealth authored and evias committed Jan 11, 2023
1 parent 0bda6f5 commit 351c384
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,14 @@
<div class="item" v-html="item.distance" />
<div class="item" v-html="item.elevationGain" />
<div class="item" v-html="item.avgPace" />
<div class="item" v-html="item.assets.length ? item.assets[0] : 0" />
<div
class="item"
v-html="
item.assets[0] && item.assets[0].amount
? item.assets[0].amount
: 0
"
/>
</div>
</div>
</div>
Expand Down

0 comments on commit 351c384

Please sign in to comment.