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
Logs (lower cased and trimmed):
"" " " "te" "test" "test" "test"
or (untouched):
"" " " " TE" " TEST" " TEST " " TEST "
Logs:
"" " " "te" "test" "test" " TEST "
TEST
4.15.20
Playground example
N/A
The text was updated successfully, but these errors were encountered:
The problem come from the different handling of inputValue:
inputValue
coral-spectrum/coral-component-autocomplete/src/scripts/Autocomplete.js
Line 1072 in 8d84df7
Line 1148 in 8d84df7
Note that the string comparaison don't handle unicode equivalences. Example: "señor" !== "señor" (cf. String.prototype.normalize() - JavaScript | MDN)
"señor" !== "señor"
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
Logs (lower cased and trimmed):
or (untouched):
Actual Behavior
Logs:
Reproduce Scenario (including but not limited to)
Steps to Reproduce
TEST
(with surounding spaces)Browser name/version/os (ie Chrome Version 62.0.3202.94 (Official Build) (64-bit) MacOS)
Coral Spectrum version
4.15.20
Sample Code that illustrates the problem (use the Playground if possible)
Playground example
Screenshots (if applicable)
N/A
The text was updated successfully, but these errors were encountered: