We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50c544 commit 179c5eeCopy full SHA for 179c5ee
src/process/filter/index.ts
@@ -40,7 +40,7 @@ export const filterPostProcess: ProcessorFnSync<FilterScope> = (context: FilterC
40
if (scope.filter[path]) {
41
let value = get(submission?.data, path);
42
if (isObject(value) && isObject(scope.filter[path])) {
43
- if (Utils.getModelType(context.component) === 'dataObject') {
+ if ((value as any).data) {
44
value = {...value, ...scope.filter[path], data: (value as any)?.data}
45
} else {
46
value = {...value, ...scope.filter[path]}
0 commit comments