Skip to content

Commit

Permalink
UIU-2973 - Update patron groups retrieval in user search to hold maxU…
Browse files Browse the repository at this point in the history
…npagedResourceCount (#2583)
  • Loading branch information
Terala-Priyanka authored Nov 8, 2023
1 parent ee4f141 commit 8feda5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Also support `feesfines` interface version `19.0`. Refs UIU-2960.
* Correctly handle optional `X-Okapi-token` request header. Refs UIU-2977.
* Fix bug with Edit form Expand/collapse all shortcuts not working. Refs UIU-2959.
* Update patron groups retrieval in user search to hold `maxUnpagedResourceCount`. Refs UIU-2973.

## [10.0.3](https://github.com/folio-org/ui-users/tree/v10.0.3) (2023-10-23)
[Full Changelog](https://github.com/folio-org/ui-users/compare/v10.0.1...v10.0.3)
Expand Down
2 changes: 1 addition & 1 deletion src/routes/UserSearchContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class UserSearchContainer extends React.Component {
path: 'groups',
params: {
query: 'cql.allRecords=1 sortby group',
limit: '200',
limit: (q, p, r, l, props) => props?.stripes?.config?.maxUnpagedResourceCount || '200',
},
records: 'usergroups',
},
Expand Down

0 comments on commit 8feda5e

Please sign in to comment.