Skip to content

Commit

Permalink
Handle null principals
Browse files Browse the repository at this point in the history
  • Loading branch information
joelhulen committed Dec 11, 2024
1 parent 9e8570a commit 68fbb6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
<template #body="{ data }">
<Button
link
:aria-label="`Delete role assignment for ${data.principal.display_name}`"
:aria-label="`Delete role assignment ${data.principal?.display_name? 'for ' + data.principal?.display_name : ''}`"
@click="roleAssignmentToDelete = data"
>
<i class="pi pi-trash" style="font-size: 1.2rem" aria-hidden="true"></i>
Expand Down

0 comments on commit 68fbb6b

Please sign in to comment.