Skip to content

Commit

Permalink
add(BasicDropCard.vue): free text to 0 price drops
Browse files Browse the repository at this point in the history
  • Loading branch information
hassnian committed Aug 9, 2024
1 parent f2308db commit c53cec4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion components/drops/BasicDropCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,16 @@
</div>
</slot>
<div
v-if="dropPrice"
v-if="Number(dropPrice)"
class="flex gap-1 items-baseline"
>
<span>{{ formattedPrice }}</span><span class="text-k-grey text-xs">USD</span>
</div>
<div
v-else
>
<span>{{ $t('free') }}</span>
</div>
</div>

<CollectionDropCollectedBy
Expand Down

0 comments on commit c53cec4

Please sign in to comment.