Skip to content

Commit

Permalink
shopping line item number formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vabene1111 committed Dec 28, 2024
1 parent 1a39066 commit a4548ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue3/src/components/display/ShoppingLineItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<i class="fas fa-check text-success fa-fw" v-if="a.checked"></i>
<i class="fas fa-clock-rotate-left text-info fa-fw" v-if="a.delayed"></i> <b>
<span :class="{'text-disabled': a.checked || a.delayed}">
{{ a.amount }}
{{ $n(a.amount) }}
<span v-if="a.unit">{{ a.unit.name }}</span>
</span>

Expand Down

0 comments on commit a4548ab

Please sign in to comment.