I am using the latest Angular5 version and and latest ng-bootstrap version.
I am trying to show tooltip conditionally
<input type="text" id="name" class="form-control" [ngbTooltip]="tipContent" placement="bottom" name="name" formControlName="name">
<ng-template *ngIf="true === true" #tipContent>Hello</ng-template>
But this does not show up. Seems to have some issue.