We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10df483 + 2f5d970 commit fa7ae08Copy full SHA for fa7ae08
src/process/filter/index.ts
@@ -52,7 +52,7 @@ export const filterPostProcess: ProcessorFnSync<FilterScope> = (context: FilterC
52
for (const path in scope.filter) {
53
if (scope.filter[path].include) {
54
let value = get(submission?.data, path);
55
- if (isObject(value) && isObject(scope.filter[path])) {
+ if (isObject(value) && isObject(scope.filter[path].value)) {
56
if (scope.filter[path].compModelType === 'dataObject') {
57
value = {...value, ...scope.filter[path].value, data: (value as any)?.data}
58
} else {
0 commit comments