Skip to content

Commit

Permalink
Merge pull request #196 from FS-FAST-TRACK/feature/system-reports
Browse files Browse the repository at this point in the history
Fix: Possible fix for truncated Individual Report PDF
  • Loading branch information
kinloveko authored Mar 14, 2024
2 parents 7e0565c + ae2cfa3 commit ec72f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function ParticipantAnswersTableRow({
);

return (
<View style={styles.row}>
<View style={styles.row} wrap={false}>
<Text style={styles.questionStatementColumn}>
{questionStatement}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function LeaderBoardPdfRow({
index: Number;
}) {
return (
<View style={styles.row}>
<View style={styles.row} wrap={false}>
<Text style={styles.column1}>{participant.participantName}</Text>
<Text style={styles.column2}>{participant.score} points</Text>
</View>
Expand Down

0 comments on commit ec72f9d

Please sign in to comment.