fix: Discussions list not being scrollable (#36780)

This commit is contained in:
Douglas Fabris 2025-08-25 15:47:43 -03:00 committed by GitHub
parent 80fbb2eb42
commit cad0688f63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---
Fixes an issue where isn't possible to scroll the discussion list

View File

@ -93,7 +93,6 @@ function DiscussionsList({
style={{
height: blockSize,
width: inlineSize,
overflow: 'hidden',
}}
totalCount={total}
endReached={loading ? () => undefined : (start) => loadMoreItems(start, Math.min(50, total - start))}