Skip to content

Commit 4be434b

Browse files
Merge pull request #1166 from folio-org/release_8.3.2
Release 8.3.2
2 parents 3c16c63 + f872692 commit 4be434b

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Change history for ui-agreements
2+
3+
## 8.3.2 2022-12-01
4+
* ERM-2489 Reduce number of eresources retrieved to 25 rather than 100
5+
26
## 8.3.1 2022-11-18
37
* ERM-2465 Is Perpetual dropdown not populated in Agreement create/edit form
48
* ERM-2434 "customProperties.ctx.title": "" in en.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@folio/agreements",
3-
"version": "8.3.1",
3+
"version": "8.3.2",
44
"description": "ERM agreement functionality for Stripes",
55
"main": "src/index.js",
66
"publishConfig": {

src/constants/resultCount.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
export default {
22
INITIAL_RESULT_COUNT: 100,
33
RESULT_COUNT_INCREMENT: 100,
4+
RESULT_COUNT_INCREMENT_MEDIUM: 25,
45
RECORDS_PER_REQUEST_SMALL: 10,
56
RECORDS_PER_REQUEST_MEDIUM: 100,
67
RECORDS_PER_REQUEST_LARGE: 1000,

src/routes/EResourcesRoute/EResourcesRoute.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { resultCount } from '../../constants';
1515
import { ERESOURCES_ELECTRONIC_ENDPOINT } from '../../constants/endpoints';
1616
import { useAgreementsRefdata } from '../../hooks';
1717

18-
const RESULT_COUNT_INCREMENT = resultCount.RESULT_COUNT_INCREMENT;
18+
const RESULT_COUNT_INCREMENT = resultCount.RESULT_COUNT_INCREMENT_MEDIUM;
1919

2020
const [
2121
AVAILABILITY_CONSTRAINT,

0 commit comments

Comments
 (0)