Hi,
I have just started to migrate my plugins to 4.4.
It seems that the ng-container element with NgTemplateOutlet directive does not work anymore.
For Example:
<div> |
This is the div content
|
<ng-container [ngTemplateOutlet]="theTemplate" ></ng-container> |
</div> |
|
<ng-template #theTemplate > |
<div> |
This is the template content
|
</div> |
</ng-template> |
kind regards,
Mario