From 919242910d251c9463589fc03f310c68c0b04ea8 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Tue, 8 Mar 2022 13:36:32 +0200 Subject: [PATCH] fix bool filter any --- client/src/views/fields/bool.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/views/fields/bool.js b/client/src/views/fields/bool.js index 0fc195b0fe..4ba80a0f2e 100644 --- a/client/src/views/fields/bool.js +++ b/client/src/views/fields/bool.js @@ -74,8 +74,8 @@ define('views/fields/bool', 'views/fields/base', function (Dep) { if (type === 'any') { return { - type: 'isNotNull', - attribute: 'id', + type: 'in', + value: [true, false], data: { type: type, },