Skip to content

Commit

Permalink
Affiche les notes si l'audit a des pièces jointes mais pas de notes (#…
Browse files Browse the repository at this point in the history
…753)

* show notes tab if audit has notes files

* update changelog
  • Loading branch information
bellangerq authored Jul 10, 2024
1 parent d0d69ae commit 7989ff6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
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.

## 10/07/2024

### Corrections 🐛

- Corrige l’onglet des notes qui n’était pas affiché lorsque l’audit avait des pièces jointes mais pas de notes textuelles ([#753](https://github.com/DISIC/Ara/pull/753))

## 03/07/2024

### Nouvelles fonctionnalités 🚀
Expand Down
2 changes: 1 addition & 1 deletion confiture-web-app/src/pages/report/ReportPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const uniqueId = route.params.uniqueId as string;
useWrappedFetch(() => report.fetchReport(uniqueId));
const hasNotes = computed(() => {
return !!report.data?.notes;
return !!report.data?.notes || report.data?.notesFiles.length;
});
const hasCompliantOrNotApplicableComments = computed(() => {
Expand Down

0 comments on commit 7989ff6

Please sign in to comment.