File tree 2 files changed +5
-5
lines changed
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 458
458
</div >
459
459
</div >
460
460
461
- <div class =" tab {{ data .submitted_data ?? [] is empty ? ' disabled' }}" >
461
+ <div class =" tab {{ ( data .submitted_data ?? []) is empty ? ' disabled' }}" >
462
462
<h3 class =" tab-title" >Submitted Data</h3 >
463
463
464
464
<div class =" tab-content" >
465
465
{{ _self.render_form_submitted_data (data ) }}
466
466
</div >
467
467
</div >
468
468
469
- <div class =" tab {{ data .passed_options ?? [] is empty ? ' disabled' }}" >
469
+ <div class =" tab {{ ( data .passed_options ?? []) is empty ? ' disabled' }}" >
470
470
<h3 class =" tab-title" >Passed Options</h3 >
471
471
472
472
<div class =" tab-content" >
473
473
{{ _self.render_form_passed_options (data ) }}
474
474
</div >
475
475
</div >
476
476
477
- <div class =" tab {{ data .resolved_options ?? [] is empty ? ' disabled' }}" >
477
+ <div class =" tab {{ ( data .resolved_options ?? []) is empty ? ' disabled' }}" >
478
478
<h3 class =" tab-title" >Resolved Options</h3 >
479
479
480
480
<div class =" tab-content" >
481
481
{{ _self.render_form_resolved_options (data ) }}
482
482
</div >
483
483
</div >
484
484
485
- <div class =" tab {{ data .view_vars ?? [] is empty ? ' disabled' }}" >
485
+ <div class =" tab {{ ( data .view_vars ?? []) is empty ? ' disabled' }}" >
486
486
<h3 class =" tab-title" >View Vars</h3 >
487
487
488
488
<div class =" tab-content" >
Original file line number Diff line number Diff line change 138
138
{{- ' Content: ' ~ notification.getContent () }}<br />
139
139
{{- ' Importance: ' ~ notification.getImportance () }}<br />
140
140
{{- ' Emoji: ' ~ (notification.getEmoji () is empty ? ' (empty)' : notification.getEmoji ()) }}<br />
141
- {{- ' Exception: ' ~ notification.getException () ?? ' (empty)' }}<br />
141
+ {{- ' Exception: ' ~ ( notification.getException () ?? ' (empty)' ) }}<br />
142
142
{{- ' ExceptionAsString: ' ~ (notification.getExceptionAsString () is empty ? ' (empty)' : notification.getExceptionAsString ()) }}
143
143
</pre >
144
144
</div >
You can’t perform that action at this time.
0 commit comments