Skip to content

Commit

Permalink
Social: Fix Bluesky profile name connection management (#39889)
Browse files Browse the repository at this point in the history
* Default to external_name if display is not available

* changelog
  • Loading branch information
gmjuhasz authored Oct 24, 2024
1 parent 2431e96 commit 37925d9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: fixed

Fixed Bsky conneciton management profile name
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 37925d9

Please sign in to comment.