Skip to content

Commit 1c2f949

Browse files
committed
add 100 min preset & note about minutes being adjustable during checkout
1 parent 8fe08aa commit 1c2f949

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

frontend/src/pages/org/settings/components/billing-addon-link.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { BtrixElement } from "@/classes/BtrixElement";
88
import { type BillingAddonCheckout } from "@/types/billing";
99
import appState from "@/utils/state";
1010

11-
const PRESET_MINUTES = [600, 1500, 3000];
11+
const PRESET_MINUTES = [100, 600, 1500, 3000];
1212

1313
type Price = {
1414
value: number;
@@ -137,7 +137,12 @@ export class OrgSettingsBillingAddonLink extends BtrixElement {
137137
</sl-visually-hidden>
138138
</sl-button>
139139
<sl-menu>
140-
<sl-menu-label>${msg("Preset minute amounts")}</sl-menu-label>
140+
<sl-menu-label
141+
>${msg("Preset minute amounts")}
142+
<div class="text-xs font-normal">
143+
${msg("Amounts are adjustable during checkout.")}
144+
</div>
145+
</sl-menu-label>
141146
${PRESET_MINUTES.map((m) => {
142147
const minutes = this.localizeMinutes(m);
143148
return html`

0 commit comments

Comments
 (0)