fix: removed baseAPIPath since fc billing api helper is moved to frappe framework
This commit is contained in:
parent
bfa52fbd6f
commit
9083b327f4
@ -1 +1 @@
|
|||||||
Subproject commit 526e5f8b0651201294fcde4ecb602721bbe83368
|
Subproject commit b8f444344d5993dcd12304f53243be9f65f5626e
|
||||||
@ -75,7 +75,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<TrialBanner
|
<TrialBanner
|
||||||
baseAPIPath="crm.api.saas_billing"
|
|
||||||
:isSidebarCollapsed="isSidebarCollapsed"
|
:isSidebarCollapsed="isSidebarCollapsed"
|
||||||
@upgradePlan="showBillingSettingPage"
|
@upgradePlan="showBillingSettingPage"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -90,14 +90,15 @@ const tabs = computed(() => {
|
|||||||
{
|
{
|
||||||
label: 'Plans',
|
label: 'Plans',
|
||||||
icon: PlansIcon,
|
icon: PlansIcon,
|
||||||
component: markRaw(h(Plans, { baseAPIPath: 'crm.api.saas_billing' })),
|
component: markRaw(
|
||||||
|
h(Plans, { onSuccess: () => setActiveTab('Billing') }),
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Billing',
|
label: 'Billing',
|
||||||
icon: BillingIcon,
|
icon: BillingIcon,
|
||||||
component: markRaw(
|
component: markRaw(
|
||||||
h(Billing, {
|
h(Billing, {
|
||||||
baseAPIPath: 'crm.api.saas_billing',
|
|
||||||
onChangePlan: () => setActiveTab('Plans'),
|
onChangePlan: () => setActiveTab('Plans'),
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user