Skip to content

Commit

Permalink
fix: img
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomariscal committed Jul 11, 2024
1 parent a6d8952 commit b627889
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/components/AccountReceiveTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,12 @@
<div :key="props.row.id" class="col-12">
<q-card class="card-border cursor-pointer q-pt-md col justify-center items-center">
<q-card-section class="row justify-center items-center">
<img v-if="getTokenInfo(props.row.token)" src="path/to/image.jpg" />props.row.token, tokens)"
style="width: 1.2rem" v-if="getTokenInfo(props.row.token)" />
<img
class="q-mr-md"
:src="getTokenLogoUri(props.row.token, tokens)"
style="width: 1.2rem"
v-if="getTokenInfo(props.row.token)"
/>
<div class="text-primary text-h6 header-black q-pb-none">
{{ formatAmount(props.row.amount, props.row.token, tokens) }}
{{ getTokenSymbol(props.row.token, tokens) }}
Expand Down

0 comments on commit b627889

Please sign in to comment.