diff --git a/resources/assets/sass/status-page/_status-page.scss b/resources/assets/sass/status-page/_status-page.scss index c6ffdb86..c3cdc243 100644 --- a/resources/assets/sass/status-page/_status-page.scss +++ b/resources/assets/sass/status-page/_status-page.scss @@ -423,4 +423,8 @@ body.status-page { } } } + //Display inline the incident update message. + .incident-update-item > p { + display: inline-block; + } } diff --git a/resources/views/partials/incidents.blade.php b/resources/views/partials/incidents.blade.php index d7bcffc6..5383c890 100644 --- a/resources/views/partials/incidents.blade.php +++ b/resources/views/partials/incidents.blade.php @@ -33,10 +33,17 @@ @if($incident->updates->isNotEmpty())
@foreach($incident->updates as $update) - - {{ Str::limit($update->raw_message, 20) }} - {{ $update->created_at_diff }} + + + {!! $update->formatted_message !!} + + + + + @endforeach