File tree 2 files changed +3
-44
lines changed
2 files changed +3
-44
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ import {
33
33
ViewContext ,
34
34
} from '@uirouter/core' ;
35
35
import { Ng2ViewConfig } from '../statebuilders/views' ;
36
- import { MergeInjector } from '../mergeInjector' ;
37
36
38
37
/** @hidden */
39
38
let id = 0 ;
@@ -291,7 +290,8 @@ export class UIView implements OnInit, OnDestroy {
291
290
const componentClass = config . viewDecl . component ;
292
291
293
292
// Create the component
294
- const compFactoryResolver = componentInjector . get ( ComponentFactoryResolver ) ;
293
+ const moduleInjector = context . getResolvable ( NATIVE_INJECTOR_TOKEN ) . data ;
294
+ const compFactoryResolver = moduleInjector . get ( ComponentFactoryResolver ) ;
295
295
const compFactory = compFactoryResolver . resolveComponentFactory ( componentClass ) ;
296
296
this . _componentRef = this . _componentTarget . createComponent ( compFactory , undefined , componentInjector ) ;
297
297
@@ -322,10 +322,8 @@ export class UIView implements OnInit, OnDestroy {
322
322
newProviders . push ( { provide : UIView . PARENT_INJECT , useValue : parentInject } ) ;
323
323
324
324
const parentComponentInjector = this . viewContainerRef . injector ;
325
- const moduleInjector = context . getResolvable ( NATIVE_INJECTOR_TOKEN ) . data ;
326
- const mergedParentInjector = new MergeInjector ( moduleInjector , parentComponentInjector ) ;
327
325
328
- return ReflectiveInjector . resolveAndCreate ( newProviders , mergedParentInjector ) ;
326
+ return Injector . create ( { providers : newProviders , parent : parentComponentInjector } ) ;
329
327
}
330
328
331
329
/**
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments