Skip to content
Merged
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/slow-tomatoes-try.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---

Fixes an issue where pagination is not working properly in “users in role” table
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const UsersInRoleTable = ({ rid, roleId, roleName, description }: UsersInRoleTab
divider
current={current}
itemsPerPage={itemsPerPage}
count={users.length || 0}
count={data.total || 0}
onSetItemsPerPage={onSetItemsPerPage}
onSetCurrent={onSetCurrent}
{...paginationProps}
Expand Down
Loading