Skip to content

Commit

Permalink
a11y: le tableau de parcelles est navigable au clavier
Browse files Browse the repository at this point in the history
  • Loading branch information
thom4parisot committed May 21, 2024
1 parent c2cdef4 commit 51adfdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Features/FeatureGroup.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<tbody>
<tr @click.stop="open = !open" class="clickable group-header">
<tr @click.stop="open = !open" @keydown.enter="open = !open" class="clickable group-header" tabindex="0">
<td class="selection">
<div class="fr-checkbox-group single-checkbox">
<input type="checkbox" :id="'radio-'+ featureGroup.key" :checked="allSelected" @click="toggleFeatureGroup" />
Expand Down

0 comments on commit 51adfdd

Please sign in to comment.