Commit c03596b 1 parent aa5ba06 commit c03596b Copy full SHA for c03596b
File tree 1 file changed +11
-2
lines changed
packages/app/src/api/core-domain/infra/mail
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 203
203
? "non calculable"
204
204
: declaration . maternityLeaves . score . getValue ( )
205
205
} }
206
- - indicateur hautes rémunérations: ${ declaration . highRemunerations ?. score . getValue ( ) } }
206
+ - indicateur hautes rémunérations: ${
207
+ declaration . highRemunerations ?. score ?. getValue ( ) === undefined
208
+ ? "non calculable"
209
+ : declaration . highRemunerations . score . getValue ( )
210
+ } }
207
211
208
212
Si vous souhaitez visualiser ou modifier votre déclaration, veuillez cliquer sur le lien suivant :
209
213
@@ -275,7 +279,12 @@ Les services de l’administration du travail.
275
279
? "non calculable"
276
280
: declaration . maternityLeaves . score . getValue ( ) }
277
281
</ li >
278
- < li > indicateur hautes rémunérations: { declaration . highRemunerations ?. score . getValue ( ) } </ li >
282
+ < li >
283
+ indicateur hautes rémunérations:{ " " }
284
+ { declaration . highRemunerations ?. score ?. getValue ( ) === undefined
285
+ ? "non calculable"
286
+ : declaration . highRemunerations . score . getValue ( ) }
287
+ </ li >
279
288
</ ul >
280
289
281
290
< p >
You can’t perform that action at this time.
0 commit comments