diff --git a/frontend/js/components/FeatureGrid.jsx b/frontend/js/components/FeatureGrid.jsx index c1dcefc65..3dd928dcf 100644 --- a/frontend/js/components/FeatureGrid.jsx +++ b/frontend/js/components/FeatureGrid.jsx @@ -257,7 +257,7 @@ class SiraGrid extends React.Component { let pagination = {startIndex: params.startRow, maxFeatures: params.endRow - params.startRow}; let filterObj = this.props.gridType === 'search' ? { groupFields: this.props.groupFields, - filterFields: this.props.filterFields.filter((field) => field.value), + filterFields: this.props.filterFields.filter(({value = ''}) => value !== null && value !== ''), spatialField: this.props.spatialField, pagination } : {