We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b9de7 commit 6e0037dCopy full SHA for 6e0037d
app/javascript/components/search/controls/Filters.jsx
@@ -16,14 +16,13 @@ function FilterCheckboxes(props) {
16
}
17
props.setSelection(newSelection)
18
19
- const uniqueId = Math.random().toString(36).substr(2, 8)
20
21
return (
22
<ul className="facet-filter-list">
23
{
24
props.filters.map(filter => {
25
26
- <li key={`li-${filter.id}-${uniqueId}`}>
+ <li key={`li-${filter.id}`}>
27
<label htmlFor={filter.id}>
28
<input
29
type='checkbox'
app/javascript/components/search/controls/FiltersSearchBar.jsx
0 commit comments