fix matrix input email format issue (#562)

This commit is contained in:
Favour Olayinka 2024-09-12 09:02:11 +01:00 committed by GitHub
parent 6769da6e10
commit 2c70ed090e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@ Your form "{{$form->title}}" has a new submission.
<a href="{{$link['signed_url']}}">{{$link['label']}}</a> <br/>
@endforeach
@else
{!! is_array($field['value'])?implode(',',$field['value']):nl2br(e($field['value']))!!}
@if($field['type'] == 'matrix')
{!! nl2br(e($field['value'])) !!}
@else
{!! is_array($field['value'])?implode(',',$field['value']):$field['value']!!}
@endif
@endif
@endif
@endforeach