Skip to content

Commit bc1508d

Browse files
Martin LetellierMartin Letellier
authored andcommitted
wording
1 parent c912036 commit bc1508d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/app/(backoffice)/administration/demandeurs/components/statistiques-demandes/SourcesAcquisitionTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface SourcesAcquisitionTableProps {
3030
}
3131

3232
function computeVariation(current: number, previous: number): number | null {
33-
if (previous === 0) return null;
33+
if (previous === 0) return current > 0 ? 100 : 0;
3434
return Math.round(((current - previous) / previous) * 100);
3535
}
3636

@@ -98,6 +98,7 @@ export function SourcesAcquisitionTable({
9898
Données base de données
9999
</span>
100100
</h3>
101+
<p className="fr-text--sm fr-text-mention--grey fr-mb-2w">Données disponibles pour les demandeurs inscrits après le 27 Avril 2026</p>
101102
<div
102103
style={{
103104
backgroundColor: "var(--background-default-grey)",

0 commit comments

Comments
 (0)