Skip to content

Commit

Permalink
Update make-find-mixin.ts
Browse files Browse the repository at this point in the history
correct fetchParams attribute
  • Loading branch information
fratzinger committed Sep 14, 2020
1 parent cbfc29b commit 87fc139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/make-find-mixin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function makeFindMixin(options) {
const {
service,
params,
fetchQuery,
fetchParams,
queryWhen = () => true,
local = false,
qid = 'default',
Expand Down Expand Up @@ -319,7 +319,7 @@ export default function makeFindMixin(options) {

setupAttribute(SERVICE_NAME, service, 'computed', true)
setupAttribute(PARAMS, params)
setupAttribute(FETCH_PARAMS, fetchQuery)
setupAttribute(FETCH_PARAMS, fetchParams)
setupAttribute(QUERY_WHEN, queryWhen, 'computed')
setupAttribute(LOCAL, local)

Expand Down

0 comments on commit 87fc139

Please sign in to comment.