From e39a548728ea50fb3e630d6869c746fd0259ca43 Mon Sep 17 00:00:00 2001 From: Quentin Bellanger Date: Thu, 23 May 2024 10:45:37 +0200 Subject: [PATCH] =?UTF-8?q?Corrige=20le=20lien=20copi=C3=A9=20de=20la=20d?= =?UTF-8?q?=C3=A9claration=20d'accessibilit=C3=A9=20(#713)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix wording and statement link when copying url * update changelog --- CHANGELOG.md | 5 ++++- confiture-web-app/src/pages/StatementPage.vue | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b0ec4854..f11b36d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,16 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c - Permet d’accéder à un rapport quand l’audit est supprimer ([#662](https://github.com/DISIC/Ara/pull/662)) +### Corrections 🐛 + +- Corrige l’URL copiée de la déclaration d’accessibilité ([#713](https://github.com/DISIC/Ara/pull/713)) + ## 26/04/2024 ### Autres changements ⚙️ - Ajoute un lien de retour vers le rapport depuis la page de contexte de l’audit ([#703](https://github.com/DISIC/Ara/pull/703)) - ## 17/04/2024 ### Nouvelles fonctionnalités 🚀 diff --git a/confiture-web-app/src/pages/StatementPage.vue b/confiture-web-app/src/pages/StatementPage.vue index 17038209c..6079782b5 100644 --- a/confiture-web-app/src/pages/StatementPage.vue +++ b/confiture-web-app/src/pages/StatementPage.vue @@ -20,7 +20,7 @@ useWrappedFetch(() => report.fetchReport(uniqueId)); const notify = useNotifications(); async function copyA11yStatementUrl() { - const url = `${window.location.origin}/temp/${uniqueId}/declaration-accessibilite`; + const url = `${window.location.origin}/declaration/${uniqueId}`; navigator.clipboard.writeText(url).then(() => { showCopyAlert.value = true; @@ -28,7 +28,7 @@ async function copyA11yStatementUrl() { notify( "success", "", - "Le lien vers le rapport a bien été copié dans le presse-papier." + "Le lien vers la déclaration a bien été copié dans le presse-papier." ); }); }