Skip to content

Commit e39a548

Browse files
authored
Corrige le lien copié de la déclaration d'accessibilité (#713)
* fix wording and statement link when copying url * update changelog
1 parent 5b0c4aa commit e39a548

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c
88

99
- Permet d’accéder à un rapport quand l’audit est supprimer ([#662](https://github.com/DISIC/Ara/pull/662))
1010

11+
### Corrections 🐛
12+
13+
- Corrige l’URL copiée de la déclaration d’accessibilité ([#713](https://github.com/DISIC/Ara/pull/713))
14+
1115
## 26/04/2024
1216

1317
### Autres changements ⚙️
1418

1519
- Ajoute un lien de retour vers le rapport depuis la page de contexte de l’audit ([#703](https://github.com/DISIC/Ara/pull/703))
1620

17-
1821
## 17/04/2024
1922

2023
### Nouvelles fonctionnalités 🚀

confiture-web-app/src/pages/StatementPage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ useWrappedFetch(() => report.fetchReport(uniqueId));
2020
const notify = useNotifications();
2121
2222
async function copyA11yStatementUrl() {
23-
const url = `${window.location.origin}/temp/${uniqueId}/declaration-accessibilite`;
23+
const url = `${window.location.origin}/declaration/${uniqueId}`;
2424
2525
navigator.clipboard.writeText(url).then(() => {
2626
showCopyAlert.value = true;
2727
2828
notify(
2929
"success",
3030
"",
31-
"Le lien vers le rapport a bien été copié dans le presse-papier."
31+
"Le lien vers la déclaration a bien été copié dans le presse-papier."
3232
);
3333
});
3434
}

0 commit comments

Comments
 (0)