Skip to content

Commit

Permalink
Release v4.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
UladzislauKutarkin committed Feb 14, 2024
1 parent aa46f78 commit edaed31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## In progress

## [4.0.3](https://github.com/folio-org/ui-bulk-edit/tree/v4.0.3) (2024-02-14)

* [UIBULKED-412](https://issues.folio.org/browse/UIBULKED-412) Not all but up to 10 note types are displayed in Bulk edit.

## [4.0.2](https://github.com/folio-org/ui-bulk-edit/tree/v4.0.2) (2023-11-06)

* [UIBULKED-373](https://issues.folio.org/browse/UIBULKED-373) "User" dropdown doesn't include Users recently run bulk edit jobs
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/api/useItemNotes.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const useItemNotes = (options = {}) => {
queryKey: 'itemNotes',
cacheTime: Infinity,
staleTime: Infinity,
queryFn: () => ky.get('item-note-types').json(),
queryFn: () => ky.get('item-note-types', { searchParams: { limit: 1000 } }).json(),
...options,
},
);
Expand Down

0 comments on commit edaed31

Please sign in to comment.