From 66ec744c21e9d1095f120eac594591887bc2ed79 Mon Sep 17 00:00:00 2001 From: A Date: Wed, 10 Jan 2018 15:01:58 +0100 Subject: [PATCH] Shows the incident's updates. The incident's updates are no longer summurized with "..." and bold, they are fully displayed in order to be able to read all the incident life on the status page. --- resources/views/partials/incidents.blade.php | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/resources/views/partials/incidents.blade.php b/resources/views/partials/incidents.blade.php index d7bcffc6..a711fdcb 100644 --- a/resources/views/partials/incidents.blade.php +++ b/resources/views/partials/incidents.blade.php @@ -34,9 +34,17 @@
@foreach($incident->updates as $update) - {{ Str::limit($update->raw_message, 20) }} - {{ $update->created_at_diff }} - +

+ + {{ $update->raw_message }} + + + + + +

@endforeach