Skip to content
This repository was archived by the owner on Oct 24, 2018. It is now read-only.

Commit 78609a6

Browse files
author
Mads Møller
committed
Fixing IE11 filter regression
1 parent 8ae8eba commit 78609a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/classes/Row.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default class Row {
5555
return this.columns
5656
.filter(column => column.isFilterable())
5757
.map(column => this.getFilterableValue(column.getFilterFieldName()))
58-
.filter(filterableValue => filterableValue.includes(filter.toLowerCase()))
58+
.filter(filterableValue => filterableValue.indexOf(filter.toLowerCase()) >= 0)
5959
.length;
6060
}
6161
}

0 commit comments

Comments
 (0)