diff --git a/resources/js/pages/Scenarios/Show.tsx b/resources/js/pages/Scenarios/Show.tsx index fb21400..9109e79 100644 --- a/resources/js/pages/Scenarios/Show.tsx +++ b/resources/js/pages/Scenarios/Show.tsx @@ -71,6 +71,11 @@ const bucketTypeOptions = [ { value: 'want', label: 'Want' }, ]; +const allocationTypeOptions = [ + { value: 'fixed_limit', label: 'Fixed Limit' }, + { value: 'percentage', label: 'Percentage' }, +]; + /** Convert cents to dollars for display */ const centsToDollars = (cents: number): number => cents / 100; @@ -269,7 +274,11 @@ export default function Show({ scenario, buckets, streams = { data: [] }, stream
Priority {bucket.priority} •{' '}
@@ -280,7 +289,14 @@ export default function Show({ scenario, buckets, streams = { data: [] }, stream
displayLabel={bucket.type_label}
disabled={bucket.type === 'overflow'}
/>
- {' '}• {bucket.allocation_type_label}
+ {' '}•{' '}
+