Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge master
Browse files Browse the repository at this point in the history
Terala-Priyanka committed Nov 9, 2023
2 parents d014d41 + 8feda5e commit 6a9e3a3
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,8 @@
* 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 resourceData and queryParams in `UserSearchContainer.js` to escape special characters in tags filter. Refs. UIU-2731.
* Update patron groups retrieval in user search to hold `maxUnpagedResourceCount`. Refs UIU-2973.
* Update resourceData and queryParams in `UserSearchContainer.js` to escape special characters in tags filter. Refs. UIU-2995.

## [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)
2 changes: 1 addition & 1 deletion src/routes/UserSearchContainer.js
Original file line number Diff line number Diff line change
@@ -106,7 +106,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',
},

0 comments on commit 6a9e3a3

Please sign in to comment.