We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a633d2a commit 80eaf78Copy full SHA for 80eaf78
static/gsApp/views/subscriptionPage/reservedUsageChart.tsx
@@ -77,7 +77,8 @@ export function getCategoryOptions({
77
}): CategoryOption[] {
78
return USAGE_CHART_OPTIONS_DATACATEGORY.filter(
79
opt =>
80
- plan.checkoutCategories.includes(opt.value as DataCategory) &&
+ (plan.checkoutCategories.includes(opt.value as DataCategory) ||
81
+ plan.onDemandCategories.includes(opt.value as DataCategory)) &&
82
(opt.value === DataCategory.SPANS_INDEXED ? hadCustomDynamicSampling : true)
83
);
84
}
0 commit comments