In Angular 9, I have a button to edit a contact in a table of contacts.
<button class="btn btn-link btn-sm" aria-label="Edit Contact">
<i class="icon-mini icon-pencil"></i>
</button>
I obviously can add the aria-label
to the icon button to say what it does, "edit contact". But I'd like to say "Edit Contact Jim Jones", which in this table would be {{contact.full_name}}
.
Can this be done?