Skip to content

Commit

Permalink
minor fix for line breaks for repeatable fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mah0001 committed Dec 12, 2024
1 parent 7927349 commit 5ad4bb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/views/display_templates/fields/field_array.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
</a>
<?php endif;?>
<?php else:?>
<?php echo isset($row[$column['key']]) ? $row[$column['key']] : '';?>
<?php echo isset($row[$column['key']]) ? nl2br($row[$column['key']]) : '';?>
<?php endif;?>
<?php endif;?>
</td>
Expand Down

0 comments on commit 5ad4bb5

Please sign in to comment.