Skip to content

Commit

Permalink
fix(summary): don't show items with 0 quantity
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Nov 26, 2020
1 parent bb2522a commit d650524
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -11,6 +11,7 @@ <h5 class="summary__title">
<div
class="summary__item"
v-for="item in items"
v-if="item.quantity > 0"
:key="item._id"
>
<a-picture
Expand Down

0 comments on commit d650524

Please sign in to comment.