We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents faf10d8 + cb3d148 commit 24298d9Copy full SHA for 24298d9
source/components/FilterableState.js
@@ -44,8 +44,8 @@ export default function FilterableState ({
44
} = monitorStateAction
45
46
const labelRenderer = filterByKeys && filterText
47
- ? value => highlightMatches(filterText, value)
48
- : value => value
+ ? value => highlightMatches(filterText, value[0])
+ : value => value[0]
49
50
const valueRenderer = filterByValues && filterText
51
? (value, nodeType) => highlightMatches(filterText, value)
0 commit comments