Merge branch 'main' into next

This commit is contained in:
nocobase[bot] 2024-10-24 09:21:57 +00:00
commit eb6dc302ea

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;