1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Preventing call to changedProduct if self hosted (#7591)

This commit is contained in:
Conner Turnbull
2024-01-25 08:33:06 -05:00
committed by GitHub
parent bcb232cc80
commit ad50e12168

View File

@@ -201,7 +201,10 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy {
this.singleOrgPolicyAppliesToActiveUser = policyAppliesToActiveUser;
});
this.changedProduct();
if (!this.selfHosted) {
this.changedProduct();
}
this.loading = false;
}