diff --git a/CHANGELOG.md b/CHANGELOG.md index 74660b02d..b4e42bcf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c ### Corrections 🐛 +- Corrige la mise à jour de l’ordre des pages quand les 2 pages ne sont pas adjacentes ([#809](https://github.com/DISIC/Ara/pull/809)) - Corrige l’application de l'attribut `autocomplete` sur le champ "email" du formulaire de connexion ([#808](https://github.com/DISIC/Ara/pull/808)) ## 05/09/2024 diff --git a/confiture-web-app/src/components/audit/PagesSample.vue b/confiture-web-app/src/components/audit/PagesSample.vue index 13af0fd59..f996f0c19 100644 --- a/confiture-web-app/src/components/audit/PagesSample.vue +++ b/confiture-web-app/src/components/audit/PagesSample.vue @@ -10,8 +10,8 @@ const props = defineProps<{ modelValue: Omit[]; }>(); -defineEmits<{ - (e: "update:modelValue", payload: Omit[]): void; +const emit = defineEmits<{ + (e: "update:modelValue", payload: Omit[]): void; }>(); // Allow parent to focus last field @@ -94,6 +94,8 @@ function updatePageOrder(startIndex: number, endIndex: number) { ]; } + emit("update:modelValue", pages.value); + // Focus `endIndex` select pageOrderSelectRefs.value?.at(endIndex)?.focus();