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
When there are facets that start with the same name they cannot be both selected.
The text was updated successfully, but these errors were encountered:
The solution might not be easy, I can give more context for who will work on it.
Here the test to add and reproduce the issue (Publication and Publicatio):
Publication
Publicatio
test('query with very similar query values.', () => { const state = [['file_type', 'pdf'], ['type', 'Publication']]; const query = ['type', 'Publicatio']; const newState = updateQueryFilters(query, state); expect(newState).toEqual([ ['file_type', 'pdf'], ['type', 'Publication'], ['type', 'Publicatio'], ]); const state2 = [['file_type', 'pdf'], ['type', 'Publicatio']]; const query2 = ['type', 'Publication']; const newState2 = updateQueryFilters(query2, state2); expect(newState2).toEqual([ ['file_type', 'pdf'], ['type', 'Publication'], ['type', 'Publicatio'], ]); });
Sorry, something went wrong.
No branches or pull requests
When there are facets that start with the same name they cannot be both selected.
The text was updated successfully, but these errors were encountered: