Skip to content

Commit

Permalink
fix: effectif cell not displaying for open data
Browse files Browse the repository at this point in the history
  • Loading branch information
XavierJp committed Dec 27, 2024
1 parent efa7d9a commit d579b46
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,12 @@ export const EffectifCell = ({
if (hasRights(session, ApplicationRights.effectifsAnnuels)) {
return <EffectifProtected uniteLegale={uniteLegale} session={session} />;
}
return libelleTrancheEffectif(
uniteLegale.trancheEffectif,
uniteLegale.anneeTrancheEffectif
return (
<>
{libelleTrancheEffectif(
uniteLegale.trancheEffectif,
uniteLegale.anneeTrancheEffectif
)}
</>
);
};

0 comments on commit d579b46

Please sign in to comment.