Skip to content

Commit 6924ac0

Browse files
fix: Paid Donation ticket sale stats (#5782)
Co-authored-by: Areeb Jamal <[email protected]>
1 parent 91fb290 commit 6924ac0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

app/templates/events/view/tickets/index.hbs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,18 +144,17 @@
144144
{{#unless this.device.isMobile}}
145145
<td class="right aligned">{{ticket.orderStatistics.tickets.completed}}</td>
146146
{{/unless}}
147-
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{mult ticket.orderStatistics.tickets.completed ticket.price}}/></td>
147+
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{ticket.orderStatistics.sales.completed}}/></td>
148148
{{#unless this.device.isMobile}}
149149
<td class="right aligned">{{ticket.orderStatistics.tickets.placed}}</td>
150150
{{/unless}}
151-
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{mult ticket.orderStatistics.tickets.placed ticket.price}}/></td>
151+
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{ticket.orderStatistics.sales.placed}}/></td>
152152
{{#unless this.device.isMobile}}
153153
<td class="right aligned">{{ticket.orderStatistics.tickets.pending}}</td>
154154
{{/unless}}
155-
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{mult ticket.orderStatistics.tickets.pending ticket.price}}/></td>
155+
<td class="right aligned"><CurrencyAmount @currency={{this.model.eventDetail.paymentCurrency}} @amount={{ticket.orderStatistics.sales.pending}}/></td>
156156
</tr>
157157
{{/each}}
158158
</tbody>
159159
</table>
160160
</div>
161-

0 commit comments

Comments
 (0)