修复 filter 报错问题
This commit is contained in:
parent
239e14f7ec
commit
001b0dee1f
|
@ -364,7 +364,7 @@ function getStrOrVariable(value: string, data: any) {
|
|||
? parseFloat(value)
|
||||
: /,/.test(value)
|
||||
? value.split(/\s*,\s*/)
|
||||
: (resolveVariable(value, data) ?? value);
|
||||
: resolveVariable(value, data);
|
||||
}
|
||||
|
||||
function getConditionValue(
|
||||
|
|
Loading…
Reference in New Issue