Skip to content

Commit

Permalink
UIBULKED-373 "User" dropdown doesn't include Users recently run bulk …
Browse files Browse the repository at this point in the history
…edit jobs
  • Loading branch information
vashjs committed Oct 30, 2023
1 parent 5628642 commit 0e6d0b1
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 @@
* [UIBULKED-355](https://issues.folio.org/browse/UIBULKED-355) Remove reference to Query tab on the landing page.
* [UIBULKED-315](https://issues.folio.org/browse/UIBULKED-315) Group holdings record properties using optgroup component
* [UIBULKED-354](https://issues.folio.org/browse/UIBULKED-354) Two identical files with the preview of proposed changes are downloaded from Logs
* [UIBULKED-373](https://issues.folio.org/browse/UIBULKED-373) "User" dropdown doesn't include Users recently run bulk edit jobs

## [4.0.0](https://github.com/folio-org/ui-bulk-edit/tree/v4.0.0) (2023-10-12)

Expand Down
2 changes: 1 addition & 1 deletion src/hooks/api/useBulkOperationUsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const useBulkOperationUsers = (options) => {

const { data, isLoading } = useQuery({
queryKey: ['bulkOperationUsers'],
queryFn: () => ky.get(`bulk-operations/list-users?query=(entityType==("${CAPABILITIES.USER}" or "${CAPABILITIES.ITEM}" or "${CAPABILITIES.HOLDING}"))&limit=100&offset=0`).json(),
queryFn: () => ky.get(`bulk-operations/list-users?query=(entityType==("${CAPABILITIES.USER}" or "${CAPABILITIES.ITEM}" or "${CAPABILITIES.HOLDING}"))&offset=0`).json(),
...options,
});

Expand Down

0 comments on commit 0e6d0b1

Please sign in to comment.