From 5427ddb8d655a3c34fc4d5bca317cbb63feb3c5d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 15 Mar 2019 21:04:57 -0400 Subject: [PATCH] fix confirmModalRef --- src/app/organizations/manage/people.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/organizations/manage/people.component.ts b/src/app/organizations/manage/people.component.ts index 949e8f4410..3b524b98f0 100644 --- a/src/app/organizations/manage/people.component.ts +++ b/src/app/organizations/manage/people.component.ts @@ -242,7 +242,7 @@ export class PeopleComponent implements OnInit { } const factory = this.componentFactoryResolver.resolveComponentFactory(ModalComponent); - this.modal = this.groupsModalRef.createComponent(factory).instance; + this.modal = this.confirmModalRef.createComponent(factory).instance; const childComponent = this.modal.show( UserConfirmComponent, this.confirmModalRef);