From 66ec744c21e9d1095f120eac594591887bc2ed79 Mon Sep 17 00:00:00 2001 From: A Date: Wed, 10 Jan 2018 15:01:58 +0100 Subject: [PATCH 1/2] 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
From d6ce735df3b0a9c4c195d2d10417b306efdb46bd Mon Sep 17 00:00:00 2001 From: A Date: Wed, 10 Jan 2018 15:56:38 +0100 Subject: [PATCH 2/2] Display the formatted message for incident's updates. In order to be backward compatible, the formatted message is displayed for incident's updates, so a strong sentance can be used as it was the case before. --- .../assets/sass/status-page/_status-page.scss | 4 ++++ resources/views/partials/incidents.blade.php | 23 +++++++++---------- 2 files changed, 15 insertions(+), 12 deletions(-) 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 a711fdcb..5383c890 100644 --- a/resources/views/partials/incidents.blade.php +++ b/resources/views/partials/incidents.blade.php @@ -33,18 +33,17 @@ @if($incident->updates->isNotEmpty())