File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change 11export 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 ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { resultCount } from '../../constants';
1515import { ERESOURCES_ELECTRONIC_ENDPOINT } from '../../constants/endpoints' ;
1616import { useAgreementsRefdata } from '../../hooks' ;
1717
18- const RESULT_COUNT_INCREMENT = resultCount . RESULT_COUNT_INCREMENT ;
18+ const RESULT_COUNT_INCREMENT = resultCount . RESULT_COUNT_INCREMENT_MEDIUM ;
1919
2020const [
2121 AVAILABILITY_CONSTRAINT ,
You can’t perform that action at this time.
0 commit comments