We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm having an issue with an undefined item in a drop-down list when I click on input. Could you please help me
Source code on CodePen: https://codepen.io/marcif/pen/WNKVBYL
The text was updated successfully, but these errors were encountered:
Works fine for me, both in Firefox and Chrome on Linux.
EDIT: I just opened your codepen and clicked the text input. Looks the same in both browsers.
Sorry, something went wrong.
I find solution. Modify filter from this:
filter: (list) => { let filteredResults = Array.from( new Set(list.map((value) => value.match)) ).map((food) => { return list.find((value) => value.match === food); }); return filteredResults; }
to this:
filter: list => list.filter(item => item.key in item.value),
and now works fine
No branches or pull requests
I'm having an issue with an undefined item in a drop-down list when I click on input.
Could you please help me
Source code on CodePen:
https://codepen.io/marcif/pen/WNKVBYL
The text was updated successfully, but these errors were encountered: