Skip to content

Commit

Permalink
Affiche seulement les pages avec des améliorations dans le rapport (#…
Browse files Browse the repository at this point in the history
…884)

* only show pages with improvements in report

* update changelog
  • Loading branch information
bellangerq authored Nov 27, 2024
1 parent a9d2364 commit 4c1fb11
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Tous les changements notables de Ara sont documentés ici avec leur date, leur catégorie (nouvelle fonctionnalité, correction de bug ou autre changement) et leur pull request (PR) associée.

## 27/11/2024

### Autres changements ⚙️

- Affiche seulement les pages avec des commentaires C ou NA dans l’onglet du rapport "Points d’amélioration" ([#884](https://github.com/DISIC/Ara/pull/884))

## 22/11/2024

### Autres changements ⚙️
Expand Down
10 changes: 4 additions & 6 deletions confiture-web-app/src/components/report/ReportImprovements.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ const transverseImprovements = computed(() => {
});
const pagesImprovements = computed(() => {
return getReportImprovements(report).slice(1);
return getReportImprovements(report)
.slice(1)
.filter((p) => p.topics.length > 0);
});
const improvementsCount = computed(() => {
Expand All @@ -32,7 +34,7 @@ const improvementsCount = computed(() => {
:transverse-data="transverseImprovements"
>
<template #transverse-data>
<section class="fr-mb-8w">
<section v-if="transverseImprovements.topics.length > 0" class="fr-mb-8w">
<h2 id="elements-transverses" class="fr-h3 fr-mb-2w page-title">
Éléments transverses
</h2>
Expand Down Expand Up @@ -77,10 +79,6 @@ const improvementsCount = computed(() => {
{{ page.url }} <span class="fr-sr-only">(nouvelle fenêtre)</span>
</a>

<p v-if="page.topics.length === 0" class="fr-mt-4w">
Aucun point d’amélioration relevé sur cette page.
</p>

<div
v-for="(topic, i) in page.topics"
:key="topic.number"
Expand Down

0 comments on commit 4c1fb11

Please sign in to comment.