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.
1 parent a5c158a commit 31b49daCopy full SHA for 31b49da
src/components/Picker.js
@@ -456,7 +456,7 @@ function Picker({
456
return sortedItems;
457
458
const values = [];
459
- const normalizeText = (text) => label.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
+ const normalizeText = (text) => text.normalize("NFD").replace(/[\u0300-\u036f]/g, "");
460
461
let results = sortedItems.filter(item => {
462
const label = item[_schema.label].toLowerCase();
0 commit comments