Is there a way to display a tooltip text using a directive?
<i class="fas fa-info-circle" [nz-tooltip]='infoBulleContent' nzTooltipPlacement='topRight'></i>
Within the ts code, I have
this.infoBulleContent = 'Some text \n some text';
. However, the \n does not seem to be working, and I also tried using the br tag with the same result!
Any assistance would be greatly appreciated.