Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-scrollable-read-receipts.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
default: patch
---

Fix read receipt scrolling not working
8 changes: 4 additions & 4 deletions src/app/components/event-readers/EventReaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export const EventReaders = as<'div', EventReadersProps>(
</IconButton>
</Header>
<Box grow="Yes">
<Scroll visibility="Hover" hideTrack size="300">
<Box className={css.Content} direction="Column">
<Box className={css.Content} direction="Column">
<Scroll visibility="Hover" hideTrack size="300">
{latestEventReaders.map((readerId) => {
const name = getName(readerId);
const avatarMxcUrl = room.getMember(readerId)?.getMxcAvatarUrl();
Expand Down Expand Up @@ -107,8 +107,8 @@ export const EventReaders = as<'div', EventReadersProps>(
</MenuItem>
);
})}
</Box>
</Scroll>
</Scroll>
</Box>
</Box>
</Box>
);
Expand Down
Loading