diff --git a/jslib b/jslib
index 5e0a2d1d..27bcbf4b 160000
--- a/jslib
+++ b/jslib
@@ -1 +1 @@
-Subproject commit 5e0a2d1d998b5d36b093f3eff032453421680a41
+Subproject commit 27bcbf4b41373f8fbd3941c8ea6645414dac4fdd
diff --git a/src/app/organizations/settings/change-plan.component.html b/src/app/organizations/settings/change-plan.component.html
index df0e641f..c3b628b2 100644
--- a/src/app/organizations/settings/change-plan.component.html
+++ b/src/app/organizations/settings/change-plan.component.html
@@ -4,8 +4,8 @@
aria-hidden="true">×
{{'changeBillingPlan' | i18n}}
{{'changeBillingPlanUpgrade' | i18n}}
-
+
diff --git a/src/app/organizations/settings/change-plan.component.ts b/src/app/organizations/settings/change-plan.component.ts
index 46fc2ec4..8b9f487f 100644
--- a/src/app/organizations/settings/change-plan.component.ts
+++ b/src/app/organizations/settings/change-plan.component.ts
@@ -8,6 +8,9 @@ import {
import { ApiService } from 'jslib/abstractions/api.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
+import { PlanType } from 'jslib/enums/planType';
+import { ProductType } from 'jslib/enums/productType';
+
@Component({
selector: 'app-change-plan',
templateUrl: 'change-plan.component.html',
@@ -18,6 +21,8 @@ export class ChangePlanComponent {
@Output() onCanceled = new EventEmitter();
formPromise: Promise;
+ defaultUpgradePlan: PlanType = PlanType.FamiliesAnnually;
+ defaultUpgradeProduct: ProductType = ProductType.Families;
constructor(private apiService: ApiService, private platformUtilsService: PlatformUtilsService) { }