@for (item of filterdItems$ | async; track item.id) {
{{ item.name }}
@if (item.amount) {
{{ item.amount }} {{ item.unit }}
}
{{ item.price | currency: item.currency }}
@if (item.cartQuantity === 0) { } @if (item.cartQuantity > 0) {
{{ item.cartQuantity }}
}
}