File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,14 +99,14 @@ export default function makeFindMixin(options) {
99
99
const serviceState = this . $store . state [ serviceName ]
100
100
101
101
// If both queries are provided, we're not using fall-through pagination.
102
- // User can pass `paginate: false` to force old behavior with a single query.
103
102
if (
104
103
( this [ FETCH_PARAMS ] && this [ PARAMS ] ) ||
105
- ( this [ PARAMS ] && this [ PARAMS ] . paginate === false )
104
+ ( this [ PARAMS ] && ! this [ PARAMS ] . paginate )
106
105
) {
107
106
return this . $store . getters [ `${ serviceName } /find` ] ( this [ PARAMS ] ) . data
108
107
}
109
108
109
+ // User can pass `paginate: true` to force pagination.
110
110
const params = this [ PARAMS ]
111
111
// Check for pagination data for this query.
112
112
if ( params ) {
You can’t perform that action at this time.
0 commit comments