Skip to content

Commit

Permalink
FIX valider un filtre avec la touche entrée
Browse files Browse the repository at this point in the history
  • Loading branch information
clementdelafontaine committed Apr 30, 2024
1 parent 9c1910f commit 515f8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/common/results/FacetCheckbox.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<v-lazy :min-height="10" :options="{ threshold: 0 }">
<v-checkbox :aria-label="`${replaceFacetsText(facetItem.label)} (${facetItem.value.toLocaleString('fr-FR')})` + ' résultats'" v-model="checkboxState" @click="updateCheckbox" :class="`checkboxes ms-${props.marginOffset}`"
:label="`${replaceFacetsText(facetItem.label)} (${facetItem.value.toLocaleString('fr-FR')})`" density="compact" inline hide-details>
:label="`${replaceFacetsText(facetItem.label)} (${facetItem.value.toLocaleString('fr-FR')})`" density="compact" inline hide-details @keyup.enter="updateCheckbox">
</v-checkbox>
</v-lazy>

Expand Down

0 comments on commit 515f8f2

Please sign in to comment.