diff --git a/client/src/views/fields/bool.js b/client/src/views/fields/bool.js index ae074fc42e..0d648d7cb4 100644 --- a/client/src/views/fields/bool.js +++ b/client/src/views/fields/bool.js @@ -74,8 +74,18 @@ define('views/fields/bool', 'views/fields/base', function (Dep) { if (type === 'any') { return { - type: 'in', - value: [true, false], + type: 'or', + value: [ + { + type: 'isTrue', + attribute: this.name, + + }, + { + type: 'isFalse', + attribute: this.name, + }, + ], data: { type: type, },