Fix event info events size and color (#11252)

This commit is contained in:
Germain 2023-07-13 10:35:08 +01:00 committed by GitHub
parent a5837597ff
commit 06403d07f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -71,7 +71,7 @@ export default class RoomAvatarEvent extends React.Component<IProps> {
};
return (
<div className="mx_RoomAvatarEvent">
<>
{_t(
"%(senderDisplayName)s changed the room avatar to <img/>",
{ senderDisplayName: senderDisplayName },
@ -87,7 +87,7 @@ export default class RoomAvatarEvent extends React.Component<IProps> {
),
},
)}
</div>
</>
);
}
}