mirror of
https://github.com/bitwarden/web
synced 2025-12-18 09:13:17 +00:00
Fix glob processing in npm. Ban single param parens (#818)
This commit is contained in:
@@ -20,7 +20,7 @@ export class CreateOrganizationComponent implements OnInit {
|
||||
constructor(private route: ActivatedRoute) { }
|
||||
|
||||
ngOnInit() {
|
||||
const queryParamsSub = this.route.queryParams.subscribe(async (qParams) => {
|
||||
const queryParamsSub = this.route.queryParams.subscribe(async qParams => {
|
||||
if (qParams.plan === 'families') {
|
||||
this.orgPlansComponent.plan = PlanType.FamiliesAnnually;
|
||||
this.orgPlansComponent.product = ProductType.Families;
|
||||
|
||||
Reference in New Issue
Block a user