Skip to content

Commit

Permalink
Corrige le lien copié de la déclaration d'accessibilité (#713)
Browse files Browse the repository at this point in the history
* fix wording and statement link when copying url

* update changelog
  • Loading branch information
bellangerq authored May 23, 2024
1 parent 5b0c4aa commit e39a548
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 🚀
Expand Down
4 changes: 2 additions & 2 deletions confiture-web-app/src/pages/StatementPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ 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;
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."
);
});
}
Expand Down

0 comments on commit e39a548

Please sign in to comment.