TAC: Fix CSS & component typos (#12333)
* Fix CSS & component typo * Update snapshots
This commit is contained in:
parent
431ae32304
commit
753fc2d33a
3 changed files with 10 additions and 10 deletions
|
@ -84,9 +84,9 @@ export function ThreadsActivityCentre({ displayButtonLabel }: ThreadsActivityCen
|
|||
}
|
||||
>
|
||||
{/* Make the content of the pop-up scrollable */}
|
||||
<div className="mx_ThreadsActivity_rows">
|
||||
<div className="mx_ThreadsActivityCentre_rows">
|
||||
{roomsAndNotifications.rooms.map(({ room, notificationLevel }) => (
|
||||
<ThreadsActivityRow
|
||||
<ThreadsActivityCentreRow
|
||||
key={room.roomId}
|
||||
room={room}
|
||||
notificationLevel={notificationLevel}
|
||||
|
@ -122,10 +122,10 @@ interface ThreadsActivityRow {
|
|||
/**
|
||||
* Display a room with unread threads.
|
||||
*/
|
||||
function ThreadsActivityRow({ room, onClick, notificationLevel }: ThreadsActivityRow): JSX.Element {
|
||||
function ThreadsActivityCentreRow({ room, onClick, notificationLevel }: ThreadsActivityRow): JSX.Element {
|
||||
return (
|
||||
<MenuItem
|
||||
className="mx_ThreadsActivityRow"
|
||||
className="mx_ThreadsActivityCentreRow"
|
||||
onSelect={(event: Event) => {
|
||||
onClick();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue