Skip to content

Commit

Permalink
UIPFU-89: Fix select all toggle button issue (#258)
Browse files Browse the repository at this point in the history
* UIPFU-89: add `Cancel` and `New` button to support Routing list feature and fix select all toggle button issue

* revert unwanted changes
  • Loading branch information
alisher-epam authored May 3, 2024
1 parent d6a7aea commit 1418612
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 @@ -6,6 +6,7 @@
[Full Changelog](https://github.com/folio-org/ui-plugin-find-user/compare/v7.1.0...v7.1.1)

* Fix Select User Modal with User Assignment Status Filters pagination issue. Refs UIPFU-87.
* Fix select all toggle button issue. Refs UIPFU-89.

## [7.1.0](https://github.com/folio-org/ui-plugin-find-user/tree/v7.1.0) (2024-03-20)
[Full Changelog](https://github.com/folio-org/ui-plugin-find-user/compare/v7.0.0...v7.1.0)
Expand Down
2 changes: 1 addition & 1 deletion src/UserSearchView.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class UserSearchView extends React.Component {
this.setState((state, props) => {
const isAllChecked = !state.isAllChecked;
const { data: { users } } = props;
const checkedMap = reduceUsersToMap(users, isAllChecked);
const checkedMap = reduceUsersToMap(users.records, isAllChecked);

return {
checkedMap,
Expand Down

0 comments on commit 1418612

Please sign in to comment.