Skip to content

Commit

Permalink
chain keydown modifiers on aratabs (#625)
Browse files Browse the repository at this point in the history
  • Loading branch information
bellangerq authored Jan 25, 2024
1 parent 5554213 commit 2e69e23
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

Tous les changements notables de Ara sont documentés ici avec leur date, leur catégorie (nouvelle fonctionnalité, correction de bug ou autre changement) et leur pull request (PR) associée.

## 18/01/2023
## 25/01/2024

### Corrections 🐛

- Corrige la navigation au clavier des onglets des pages de l’audit ([#625](https://github.com/DISIC/Ara/pull/625))

## 18/01/2024

### Autres changements ⚙️

Expand All @@ -12,7 +18,7 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c

- Corrige l’affichage des blocs de page de la page de paramètres sur Safari ([#608](https://github.com/DISIC/Ara/pull/608))

## 16/01/2023
## 16/01/2024

### Autres changements ⚙️

Expand Down
10 changes: 4 additions & 6 deletions confiture-web-app/src/components/audit/AraTabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ onMounted(async () => {
});
</script>

<!--
TODO:
<!--
TODO:
- ajouter une shadow quand les onglets sont scrollables
-->

Expand All @@ -89,11 +89,9 @@ onMounted(async () => {
[`fr-icon-${tab.icon}`]: !!tab.icon
})
}"
@keydown.right.prevent="selectNextTab"
@click="currentTab = i"
@keydown.down.prevent="selectNextTab"
@keydown.left.prevent="selectPreviousTab"
@keydown.up.prevent="selectPreviousTab"
@keydown.right.down.prevent="selectNextTab"
@keydown.left.up.prevent="selectPreviousTab"
@keydown.home.prevent="selectFirstTab"
@keydown.end.prevent="selectLastTab"
>
Expand Down

0 comments on commit 2e69e23

Please sign in to comment.