You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: confiture-web-app/src/assets/CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@ Tous les changements notables de Ara sont documentés ici avec leur date, leur c
8
8
9
9
- Corrige les problèmes d’accessibilité suite au contre-audit ([#478](https://github.com/DISIC/Ara/pull/478))
10
10
11
+
### Autres changements ⚙️
12
+
13
+
- Affiche un message clair et explicite sur le rapport quand aucune erreur n'a été relevée sur une page ([#465](https://github.com/DISIC/Ara/pull/465))
@@ -199,10 +210,12 @@ function getTopicName(topicNumber: number) {
199
210
}
200
211
201
212
function getCriterium(topicNumber:number, criteriumNumber:number) {
202
-
const criterium =rgaa.topics
203
-
.find((t) =>t.number===topicNumber)
204
-
// @ts-expect-error The criteria properties of each topic do not have the same signature. See: https://github.com/microsoft/TypeScript/issues/33591#issuecomment-786443978
// FIXME: "any everywhere" : The criteria properties of each topic do not have the same signature. See: https://github.com/microsoft/TypeScript/issues/33591#issuecomment-786443978
214
+
const criterium = (rgaa.topicsasany)
215
+
.find((t:any) =>t.number===topicNumber)
216
+
?.criteria.find(
217
+
(c:any) =>c.criterium.number===criteriumNumber
218
+
).criterium;
206
219
207
220
returncriterium;
208
221
}
@@ -604,6 +617,10 @@ function updateActiveAnchorLink(id: string, event: MouseEvent) {
0 commit comments