You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: static/gsApp/views/onDemandBudgets/onDemandBudgetEdit.tsx
+4-1
Original file line number
Diff line number
Diff line change
@@ -198,7 +198,10 @@ class OnDemandBudgetEdit extends Component<Props> {
198
198
<BudgetDetails>
199
199
<Description>
200
200
{t(
201
-
"This budget ensures continued monitoring after you've used up your reserved event volume. We’ll only charge you for actual usage, so this is your maximum charge for overage."
201
+
"This budget ensures continued monitoring after you've used up your reserved event volume. We'll only charge you for actual usage, so this is your maximum charge for overage.%s",
202
+
subscription.isSelfServePartner
203
+
? ` This will be part of your ${subscription.partner?.partnership.displayName} bill.`
constbudgetTextbox=screen.getByRole('textbox',{name: 'Pay-as-you-go max budget'});
503
503
expect(budgetTextbox).toHaveValue('0');
504
504
505
+
expect(
506
+
screen.getByText(
507
+
`This budget ensures continued monitoring after you've used up your reserved event volume. We'll only charge you for actual usage, so this is your maximum charge for overage.`
awaituserEvent.click(screen.getByRole('button',{name: 'Set Up Pay-as-you-go'}));
591
+
expect(
592
+
screen.getByText(
593
+
`This budget ensures continued monitoring after you've used up your reserved event volume. We'll only charge you for actual usage, so this is your maximum charge for overage. This will be part of your FOO bill.`
0 commit comments