diff --git a/front-end/src/components/tickets/SelectionView.tsx b/front-end/src/components/tickets/SelectionView.tsx index ebe13cb..35b2dda 100644 --- a/front-end/src/components/tickets/SelectionView.tsx +++ b/front-end/src/components/tickets/SelectionView.tsx @@ -41,7 +41,7 @@ export default observer((props: Props) => { } get attendancePurchaseOptions() { - return this.attendancePurchases.map(p => ({ label: p.description, value: p.purchase_type_id })) + return this.attendancePurchases.map(p => ({ label: `${p.description} ($${p.price_in_cents / 100})`, value: p.purchase_type_id })) } get emptySelection() { @@ -143,7 +143,7 @@ export default observer((props: Props) => { {state.otherPurchases.map(p =>