Skip to content

Commit

Permalink
#1334 | Fix syntax error
Browse files Browse the repository at this point in the history
(cherry picked from commit 58f0c35)
  • Loading branch information
vinayvenu authored and 1t5j0y committed Mar 20, 2024
1 parent 885e387 commit 72e0430
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ class RuleEvaluationService extends BaseService {
try {
const ruleFunc = eval(reportCard.query);
const result = ruleFunc({
params: _.merge({db: this.db, ruleInput: ruleInput}, this.getCommonParams()()),
params: _.merge({db: this.db, ruleInput: ruleInput}, this.getCommonParams()),
imports: getImports()
});
return result;
Expand Down

0 comments on commit 72e0430

Please sign in to comment.