From 7989ff60fb2f8b2fdbc4bdcb400012ff52e66a2e Mon Sep 17 00:00:00 2001 From: Quentin Bellanger Date: Wed, 10 Jul 2024 11:16:18 +0200 Subject: [PATCH] =?UTF-8?q?Affiche=20les=20notes=20si=20l'audit=20a=20des?= =?UTF-8?q?=20pi=C3=A8ces=20jointes=20mais=20pas=20de=20notes=20(#753)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * show notes tab if audit has notes files * update changelog --- CHANGELOG.md | 6 ++++++ confiture-web-app/src/pages/report/ReportPage.vue | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a05c2bd..38f4a1c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 🚀 diff --git a/confiture-web-app/src/pages/report/ReportPage.vue b/confiture-web-app/src/pages/report/ReportPage.vue index 11776e3d..e68883bf 100644 --- a/confiture-web-app/src/pages/report/ReportPage.vue +++ b/confiture-web-app/src/pages/report/ReportPage.vue @@ -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(() => {