Skip to content

Commit 532eabf

Browse files
author
Samvel Baghdasaryan
committed
updates
1 parent cc56bb8 commit 532eabf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beautiful-react-table",
3-
"version": "7.7.7",
3+
"version": "7.7.8",
44
"description": "My first react typescript package",
55
"main": "./dist/cjs/index.js",
66
"module": "./dist/esm/index.js",

src/table/MainHeader/Filter/FiltersPerColumn/apiFilter.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,7 @@ const APIFilter = ({
205205
CheckedItems: checkedItems,
206206
Search: '',
207207
}
208-
if (item.ColumnType === ColumnTypeEnums.Tags) {
209-
filteredData.ComparisonType = filteredData.ComparisonType
210-
} else {
208+
if (item.ColumnType !== ColumnTypeEnums.Tags) {
211209
filteredData.ComparisonType = checkedItems.length > 1 ? 'In' : 'Equal'
212210
}
213211

0 commit comments

Comments
 (0)