Skip to content

Commit

Permalink
UIOR-627-next-fix-1
Browse files Browse the repository at this point in the history
  • Loading branch information
aliaksei-chumakou committed Nov 20, 2020
1 parent cf05362 commit c09ed80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## (IN PROGRESS)

## [2.2.6](https://github.com/folio-org/ui-orders/tree/v2.2.6) (2020-11-20)
[Full Changelog](https://github.com/folio-org/ui-orders/compare/v2.2.5...v2.2.6)

* UIOR-627 fix for fix: remove extra spaces in `||` query filter param.


## [2.2.5](https://github.com/folio-org/ui-orders/tree/v2.2.5) (2020-11-19)
[Full Changelog](https://github.com/folio-org/ui-orders/compare/v2.2.4...v2.2.5)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@folio/orders",
"version": "2.2.5",
"version": "2.2.6",
"description": "Description for orders",
"main": "src/index.js",
"repository": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { batchFetch } from '@folio/stripes-acq-components';
const buildQueryByIds = (itemsChunk) => {
const query = itemsChunk
.map(id => `id==${id}`)
.join(' || '); // ERM api works with that format
.join('||'); // ERM api works with that format

return query || '';
};
Expand Down

0 comments on commit c09ed80

Please sign in to comment.