Skip to content

Commit

Permalink
Affiche le commentaire correct des améliorations en fonction du statut (
Browse files Browse the repository at this point in the history
#844)

* display correct comment depending on improvement status

* update changelog
  • Loading branch information
bellangerq authored Nov 6, 2024
1 parent 7b702ab commit f236699
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c

### Corrections 🐛

- Affiche le commentaire correspondant au statut du critère (C ou NA) dans le rapport d’audit ([#844](https://github.com/DISIC/Ara/pull/844))
- Ordonne correctement les pages dans la déclaration d’accessibilité et le contexte de l’audit ([#819](https://github.com/DISIC/Ara/pull/819))
- Ordonne les audits du tableau de bord par date de création descendante (du plus récent au plus ancien) ([#821](https://github.com/DISIC/Ara/pull/821))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ const getImprovementObject = (r: ReportCriteriumResult) => {
return {
criterium: r.criterium,
status: r.status,
comment: r.compliantComment || r.notApplicableComment
comment:
r.status === CriteriumResultStatus.COMPLIANT
? r.compliantComment
: r.notApplicableComment
};
};

0 comments on commit f236699

Please sign in to comment.