Skip to content

Commit 0558973

Browse files
committed
fix(bottom-sheet): do not pass projectableNodes
1 parent c2737d9 commit 0558973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bottomsheet/angular/bottomsheet.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class BottomSheetService {
118118
const detachedLoaderFactory = factoryResolver.resolveComponentFactory(DetachedLoader);
119119
const childInjector = this.createChildInjector(bottomSheetParams, viewContainerRef);
120120

121-
return viewContainerRef.createComponent(detachedLoaderFactory, 0, childInjector, null);
121+
return viewContainerRef.createComponent(detachedLoaderFactory, 0, childInjector);
122122
}
123123

124124
private async loadComponent(type: Type<any>, sheetRef: SheetRef): Promise<View> {

0 commit comments

Comments
 (0)