Skip to content

Commit

Permalink
[backend] clean
Browse files Browse the repository at this point in the history
  • Loading branch information
savacano28 committed Nov 12, 2024
1 parent fddd572 commit 60d9fc1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const getExerciseReportPdfDocDefinition = async ({
{ text: inject.inject_title },
{ text: fldt(inject.inject_status?.tracking_sent_date) || 'N/A' },
{ image: imagesMap.get(`inject_${inject.inject_id}`), width: 60 },
{ text: inject.inject_targets.map(target => target.name).join(', ') },
{ text: inject.inject_targets?.map(target => target.target_name).join(', ') },
{ stack: convertMarkdownToPdfMake(findCommentsByInjectId(inject.inject_id) || '') },
];
}),
Expand Down

0 comments on commit 60d9fc1

Please sign in to comment.