diff --git a/jsx/Filter.js b/jsx/Filter.js index ed5f960b3fc..e046aa39c75 100644 --- a/jsx/Filter.js +++ b/jsx/Filter.js @@ -40,7 +40,8 @@ function Filter(props) { const exactMatch = (!(type === 'text' || type === 'date')); if (value === null || value === '' || - (value.constructor === Array && value.length === 0)) { + (value.constructor === Array && value.length === 0) || + (type === 'checkbox' && value === false)) { props.removeFilter(name); } else { props.addFilter(name, value, exactMatch);