We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a5b0d commit ec31c5eCopy full SHA for ec31c5e
src/service-module/service-module.actions.ts
@@ -13,6 +13,11 @@ export default function makeServiceActions(service: Service<any>) {
13
params = params || {}
14
params = fastCopy(params)
15
16
+ // For working with client-side services, paginate.default must be truthy.
17
+ if (params.paginate === true) {
18
+ params.paginate = { default: true }
19
+ }
20
+
21
commit('setPending', 'find')
22
23
return service
0 commit comments