FIX: Incorrect user menu title/alt (#27019)

This commit is contained in:
Jarek Radosz 2024-05-14 15:46:11 +02:00 committed by GitHub
parent 722d694305
commit d112a49cc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,12 +18,11 @@ export default class Notifications extends Component {
avatarSize = "medium"; avatarSize = "medium";
get avatar() { get avatar() {
let avatarAttrs = {}; const avatarAttrs = addExtraUserClasses(this.currentUser, {});
addExtraUserClasses(this.currentUser, avatarAttrs);
return htmlSafe( return htmlSafe(
renderAvatar(this.currentUser, { renderAvatar(this.currentUser, {
imageSize: this.avatarSize, imageSize: this.avatarSize,
alt: "user.avatar.header_title", title: i18n("user.avatar.header_title"),
template: this.currentUser.avatar_template, template: this.currentUser.avatar_template,
username: this.currentUser.username, username: this.currentUser.username,
name: this.siteSettings.enable_names && this.currentUser.name, name: this.siteSettings.enable_names && this.currentUser.name,