FilterDataTable whitespace collapsing problems #8385
Labels
Category: Bug
PR or issue that aims to report or fix a bug
Language: Javascript
PR or issue that update Javascript code
The FilterableDataTable can cause confusion if the data in the table contains multiple consecutive whitespace characters. The table cell will collapse the whitespace to a single space as per HTML whitespace-collapsing rules, but searching for the string containing a single space will not match the result.
For instance, if a cell contains
a b
it will be rendered as "a b
" but searching fora b
will not match the row because the data isa b
and nota b
The text was updated successfully, but these errors were encountered: