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 (#403)

(cherry picked from commit c3e8453)
  • Loading branch information
vashjs committed Nov 6, 2023
1 parent 1c0d230 commit 02dc090
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## In progress

* [UIBULKED-373](https://issues.folio.org/browse/UIBULKED-373) "User" dropdown doesn't include Users recently run bulk edit jobs

## [4.0.1](https://github.com/folio-org/ui-bulk-edit/tree/v4.0.1) (2023-10-24)

* [UIBULKED-355](https://issues.folio.org/browse/UIBULKED-355) Remove reference to Query tab on the landing page.
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 02dc090

Please sign in to comment.