Skip to content

Commit

Permalink
fix:bug export
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Perrin committed Nov 15, 2024
1 parent c3a029d commit fb72146
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ module.exports = ({ db, configuration, emails, middlewares, logger }) => {
}, { token: 0 }).stream();

let isKairos = organisme => {
let kairos = organisme.sources.find(s => s === 'kairos');
let kairos = organisme.sources && organisme.sources.find(s => s === 'kairos');
return kairos === 'kairos' ? 'oui' : 'non';
};
let isResponsable = organisme => organisme.nbAvisResponsablePasFormateurSiretExact > 0;
Expand Down

0 comments on commit fb72146

Please sign in to comment.