Skip to content

Commit

Permalink
Fix warning condition in ItemCard.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
DanericNetwork committed Dec 20, 2023
1 parent 8d8dc82 commit 57d305e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/vue/components/ItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<p>{{ description }}</p>
</div>
</div>
<div v-if="warning === 'true'" class="right">
<div v-if="warning === true" class="right">
<Icon icon="warning" size="35" />
</div>
</div>
Expand Down

0 comments on commit 57d305e

Please sign in to comment.