Skip to content

Commit

Permalink
fix(core): typo. combined query missing params define line
Browse files Browse the repository at this point in the history
  • Loading branch information
binier committed Jul 24, 2020
1 parent 60a8dc2 commit e3793ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/query/combined-query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export class CombinedQuery {
}

queryStrWithParams() {
const defineParamLine = this.params.length ? `query q(${
const defineParamLine = this._params.length ? `query q(${
Param.paramsDefineStr(this._params)
}) ` : '';

Expand Down

0 comments on commit e3793ad

Please sign in to comment.