Skip to content

Commit

Permalink
fix(temoignages): missing comma in DAO
Browse files Browse the repository at this point in the history
  • Loading branch information
yohanngab committed Dec 18, 2024
1 parent 2c9ba0e commit 8db0ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/dao/temoignages.dao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const findAllWithVerbatims = async (query: { campagneIds: string[] }) =>
'id', verbatims.id,
'temoignage_id', verbatims.temoignage_id,
'question_key', verbatims.question_key,
'content', COALESCE(verbatims.content_corrected_anonymized, verbatims.content_corrected, verbatims.content)
'content', COALESCE(verbatims.content_corrected_anonymized, verbatims.content_corrected, verbatims.content),
'status', verbatims.status,
'scores', verbatims.scores,
'themes', verbatims.themes,
Expand Down

0 comments on commit 8db0ea3

Please sign in to comment.