Not sure if this is possible, but is there a way to do an *ngIf for ONLY the targeted element, without affecting anything inside?
For example, in the code below:
<div *ngIf="condition" class="outerDiv">
<div class="innerDiv"></div>
</div>
if this condition is false, I would like it to still have:
<div class="innerDiv"></div>