mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-05 21:49:25 +08:00
fix: linkage rule to correctly evaluate URL parameter variables (#5504)
This commit is contained in:
parent
3fa93ccf36
commit
055a55c4dc
@ -61,7 +61,7 @@ export function getJsonLogic() {
|
|||||||
if (Array.isArray(a)) {
|
if (Array.isArray(a)) {
|
||||||
return a.includes(b);
|
return a.includes(b);
|
||||||
}
|
}
|
||||||
return a === b;
|
return a == b;
|
||||||
},
|
},
|
||||||
$ne: function (a, b) {
|
$ne: function (a, b) {
|
||||||
return a != b;
|
return a != b;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user