Skip to content

Commit

Permalink
fix: dynamic-slot make inject public to be able to call super
Browse files Browse the repository at this point in the history
  • Loading branch information
felixroos committed Jun 8, 2018
1 parent 93db6f7 commit b7460e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/io/dynamic-slot/dynamic-slot.component.ts
Expand Up @@ -11,7 +11,7 @@ export class DynamicSlotComponent {
@ViewChild(SlotHostDirective) fieldHost: SlotHostDirective;

/** The constructor provides the instance of ViewContainerRef which is later used to create embedded views*/
constructor(private componentFactoryResolver: ComponentFactoryResolver) {
constructor(public componentFactoryResolver: ComponentFactoryResolver) {
}

/** Loads the given component inside the fieldHost. Sets current item and field by default. */
Expand Down

0 comments on commit b7460e6

Please sign in to comment.