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";
get avatar() {
let avatarAttrs = {};
addExtraUserClasses(this.currentUser, avatarAttrs);
const avatarAttrs = addExtraUserClasses(this.currentUser, {});
return htmlSafe(
renderAvatar(this.currentUser, {
imageSize: this.avatarSize,
alt: "user.avatar.header_title",
title: i18n("user.avatar.header_title"),
template: this.currentUser.avatar_template,
username: this.currentUser.username,
name: this.siteSettings.enable_names && this.currentUser.name,