To show a pop up on a GIS openlayers map i use the InnerHtml attribute. If a field is false I want to hide is DIV.
It looks like angular ignores my ngif this is my code:
this.content.innerHTML = `
<div style="width: 150px; float: right; font-size: 13px;" *ngIf="!test">
${ test }
</div> `
My boolean test is false. Is it true that ngIf does niet work with innerHTML?
thx al lot