Skip to content

Commit

Permalink
Fix regression in user account display (#8813) (#9906)
Browse files Browse the repository at this point in the history
  • Loading branch information
jleedev authored Nov 8, 2023
1 parent 173b0ca commit 298d30e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function uiAccount(context) {
// Add user name
userLink.append('span')
.attr('class', 'label')
.html(user.display_name);
.text(user.display_name);

// show "Log Out"
loginLogout
Expand Down

0 comments on commit 298d30e

Please sign in to comment.