1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-12-21 16:18:28 +01: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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}