2 May
2023
2 May
'23
11:24 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=33623 --- Comment #12 from Martin Renvoize <martin.renvoize@ptfs-europe.com> --- The code looks like it introduces a behaviour change to me.. but maybe I'm just not entirely close enough to it. endpoint: "agreements?" + (query || "_per_page=-1"), vs endpoint: "agreements?" + new URLSearchParams({ _per_page: -1, ...(query && { q: JSON.stringify(query) }), }), To me, that looks like before now we let the query govern the paging whereas after we're always setting _per_page=-1. -- You are receiving this mail because: You are watching all bug changes.