How can I conditionally add the title attribute to a div without creating another div and using ngIf?
If the permission is true, I want to include a title in my div. Here's what my current div looks like:
<div (click)="goToChangelog()" [ngStyle]="{'cursor': (permission) ? 'pointer' : ''}">
Version {{version}}
</div>