Skip to content

Commit

Permalink
feat: Display - instead of 0 in Wallet Overview Widget - MEED-7354 - M…
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Sep 4, 2024
1 parent 461c47b commit d106fbd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<span
:class="typographyClass"
class="ma-2 text-color font-weight-bold d-flex align-self-center">
{{ balanceToDisplay }}
{{ balanceToDisplay || '-' }}
</span>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<span
:class="typographyClass"
class="ma-2 text-color font-weight-bold d-flex align-self-center">
{{ weeklyRewardToDisplay }}
{{ weeklyRewardToDisplay || '-' }}
</span>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@
<template>
<v-app flat>
<div class="px-6">
<v-list-item class="px-0" two-line dense>
<v-list-item
class="px-0"
two-line
dense>
<v-list-item-content>
<v-list-item-title class="text-title">
{{ $t('wallet.administration.title') }}
Expand Down

0 comments on commit d106fbd

Please sign in to comment.