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 91c7f38 commit 0d35a58Copy full SHA for 0d35a58
src/rule.js
@@ -231,6 +231,9 @@ class Rule extends EventEmitter {
231
.then((evaluationResult) => {
232
const passes = evaluationResult.result
233
condition.factResult = evaluationResult.leftHandSideValue
234
+ if(typeof condition.value === 'object' && condition.value !== null){
235
+ condition.value.factResult = evaluationResult.rightHandSideValue;
236
+ }
237
condition.result = passes
238
return passes
239
})
0 commit comments