Skip to content

Commit

Permalink
Merge pull request #3447 from Roardom/report-paragraphs
Browse files Browse the repository at this point in the history
(Fix) Allow paragraph formatting in reports
  • Loading branch information
HDVinnie committed Jan 31, 2024
2 parents 1e6f47b + f108f99 commit 9ec9536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/Staff/report/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

<section class="panelV2">
<h2 class="panel__heading">{{ __('common.message') }}</h2>
<div class="panel__body">{{ $report->message }}</div>
<div class="panel__body" style="white-space: pre-wrap">{{ $report->message }}</div>
</section>
@if (count($urls) > 0)
<section class="panelV2">
Expand All @@ -71,7 +71,7 @@
@if ($report->solved)
<section class="panelV2">
<h2 class="panel__heading">Verdict</h2>
<div class="panel__body">{{ $report->verdict }}</div>
<div class="panel__body" style="white-space: pre-wrap">{{ $report->verdict }}</div>
</section>
@else
<section class="panelV2">
Expand Down

0 comments on commit 9ec9536

Please sign in to comment.