Skip to content

Commit

Permalink
chore(templates): allow line break in S-88
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao authored Jan 14, 2025
1 parent 9c219d1 commit 80e5b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/reports/attendance/TableHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const TableHeader = ({ column, year, locale }: TableHeaderProps) => {
>
<View style={[styles.column1]}>
<Text style={styles.header}>
{t('tr_serviceYear', { lng: locale })}
{t('tr_serviceYear', { lng: locale }).replaceAll('-', '-\u000A')}
</Text>
<Text style={[styles.header, styles.serviceYear]}>{year}</Text>
</View>
Expand Down

0 comments on commit 80e5b05

Please sign in to comment.