fix?
This commit is contained in:
parent
3599e114b1
commit
5addd12928
1 changed files with 1 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ export function serializeFindOperator(operator: FindOperator<any>): SerializedFi
|
|||
return {
|
||||
_type: 'FindOperator',
|
||||
type: operator['type'],
|
||||
value: Array.isArray(operator['value']) ? operator["value"].map(serializeFindOperator) : operator["value"],
|
||||
value: (Array.isArray(operator['value']) && operator['type'] !== 'between') ? operator["value"].map(serializeFindOperator) : operator["value"],
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue