File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed
projects/lazy-dialogs/src/lib/services Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,7 @@ import {
1212 ViewContainerRef ,
1313} from '@angular/core' ;
1414
15- import {
16- LazyDialogRef ,
17- ModuleWithLazyDialog ,
18- } from '../models' ;
15+ import { LazyDialogRef , ModuleWithLazyDialog } from '../models' ;
1916
2017/**
2118 * The LazyDialogService responsible for creating lazy loading dialogs.
@@ -111,9 +108,7 @@ export class LazyDialogService {
111108 let componentType : Type < ComponentType > ;
112109 let moduleRef : NgModuleRef < ModuleWithLazyDialog < ComponentType > > | undefined ;
113110
114- if (
115- resolvedModule . prototype instanceof ModuleWithLazyDialog
116- ) {
111+ if ( resolvedModule . prototype instanceof ModuleWithLazyDialog ) {
117112 const castedModule = resolvedModule as Type <
118113 ModuleWithLazyDialog < ComponentType >
119114 > ;
You can’t perform that action at this time.
0 commit comments