Skip to content

Commit

Permalink
Fixe les filtres critères lorsque l'audit est déjà chargé en arrivant…
Browse files Browse the repository at this point in the history
… sur la page (#737)

* set currentPageId after audit fetching

* update changelog
  • Loading branch information
hissalht authored Jul 3, 2024
1 parent 366507b commit 2e91379
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.

## 03/06/2024

### Corrections 🐛

- Correction des filtres de critères qui ne fonctionnaient pas correctement dans certains cas ([#737](https://github.com/DISIC/Ara/pull/737))

## 26/06/2024

### Nouvelles fonctionnalités 🚀
Expand Down
3 changes: 3 additions & 0 deletions confiture-web-app/src/pages/audit/AuditGenerationPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ useWrappedFetch(async () => {
resultsStore.$reset();
await auditStore.fetchAuditIfNeeded(uniqueId.value);
await resultsStore.fetchResults(uniqueId.value);
auditStore.updateCurrentPageId(
auditStore.currentAudit?.pages.at(0)?.id ?? null
);
}, true);
const resultsStore = useResultsStore();
Expand Down

0 comments on commit 2e91379

Please sign in to comment.