fix: linkage rule to correctly evaluate URL parameter variables (#5504)

This commit is contained in:
Katherine 2024-10-24 16:51:03 +08:00 committed by GitHub
parent 3fa93ccf36
commit 055a55c4dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -61,7 +61,7 @@ export function getJsonLogic() {
if (Array.isArray(a)) {
return a.includes(b);
}
return a === b;
return a == b;
},
$ne: function (a, b) {
return a != b;