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
From the documentation: https://tarekraafat.github.io/autoComplete.js/#/?id=api-configuration, the resultItem has the line:
resultItem
1- content: - Function (data, source) => { ... } - data.match has to be used for Highlighted result
But looking at the latest code that ends up calling the resultItem function, I see: https://github.com/TarekRaafat/autoComplete.js/blob/master/src/components/Item.js#L16-L17 It looks like resultItem is only being passed item.value, when it really should be passed item.
item.value
item
The text was updated successfully, but these errors were encountered:
Hello @jwendel,
Good catch!
You're totally correct thanks. Here is the fix v8.2
Have a nice day, cheers! :)
Sorry, something went wrong.
No branches or pull requests
From the documentation: https://tarekraafat.github.io/autoComplete.js/#/?id=api-configuration, the
resultItem
has the line:But looking at the latest code that ends up calling the resultItem function, I see: https://github.com/TarekRaafat/autoComplete.js/blob/master/src/components/Item.js#L16-L17
It looks like resultItem is only being passed
item.value
, when it really should be passeditem
.The text was updated successfully, but these errors were encountered: