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
Searching with terms like "Ägypten" or "Türe und Tore" for matching concepts does not find the existing labels with the exact values.
My testing revealed that the FederatedConceptMapper uses encodeURIComponent() on a string that already has been encoded:
encodeURIComponent(encodeURIComponent("Ägypten")) = "%25C3%2584gypten" =/= "Ägypten"
The text was updated successfully, but these errors were encountered:
Removing the encodeURIComponent() from federated_concept_mapper.js fixes it, but maybe there are side effects, because it's needed somewhere else.
encodeURIComponent()
federated_concept_mapper.js
Sorry, something went wrong.
Thank you for this bug report. I'll take a look at it soon.
No branches or pull requests
Searching with terms like "Ägypten" or "Türe und Tore" for matching concepts does not find the existing labels with the exact values.
My testing revealed that the FederatedConceptMapper uses encodeURIComponent() on a string that already has been encoded:
encodeURIComponent(encodeURIComponent("Ägypten")) = "%25C3%2584gypten" =/= "Ägypten"
The text was updated successfully, but these errors were encountered: