TS Component
ngOnInit() {
if(somecondition)
// The line of code that is causing issues
this.openModal(#tempName);
}
HTML Component
<ng-template #tempName>
Content goes here!
</ng-template>
this.openModal(#tempName) -> How can I access the ngTemplate tempName in this case?