Skip to content

Commit

Permalink
Default to external_name if display is not available
Browse files Browse the repository at this point in the history
  • Loading branch information
gmjuhasz committed Oct 24, 2024
1 parent 2431e96 commit 0578df4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function ConnectionName( { connection }: ConnectionNameProps ) {
</span>
) : (
<ExternalLink className={ styles[ 'profile-link' ] } href={ connection.profile_link }>
{ connection.display_name || connection.external_display }
{ connection.display_name || connection.external_display || connection.external_name }
</ExternalLink>
) }
{ isUpdating ? (
Expand Down

0 comments on commit 0578df4

Please sign in to comment.