Below is the code snippet where I am attempting to highlight profile.userId:
<p class="profile__last-login" *ngIf="profile.lastLoggedIn">
{{'intranet.profile.dashboard.lastLoggedIn' | messageBundle: profile.userId + ',' + (profile.lastLoggedIn | date: 'MM/dd/yyy h:mma') }}
</p>
I want the displayed output on the page to show as "User (username), last logged in on MM/dd/yyy h:mma" with the username in bold. However, I am unsure about how to apply styling to the profile.userId within a binding?