From ba0fdf1368c219a6368566dc6ade71388d014cf0 Mon Sep 17 00:00:00 2001 From: Anthony Bocci Date: Fri, 21 Sep 2018 19:51:01 +0200 Subject: [PATCH] Include the partial "about-app" In the settings it's possible to fill a field "About this page". If we refer to the demo the content of this field is supposed to be shown under the status on the status page. The problem was the information was not shown even if it was not empty. So if we typed "We are a company ...", this was not shown, nowhere. Technically the problem was because the partial "about-app" was not included so the information was never shown. To fix that I have included the partial "about-app" in the index. Now if the field empty nothing is shown (the same as before) but if the field is not empty so the information is shown under the status bar. See: #3249 --- resources/views/index.blade.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/views/index.blade.php b/resources/views/index.blade.php index 00561e2d..a76f68d9 100644 --- a/resources/views/index.blade.php +++ b/resources/views/index.blade.php @@ -3,6 +3,7 @@ @section('content') @include('partials.modules.messages') @include('partials.modules.status') +@include('partials.about-app') @include('partials.modules.components') @include('partials.modules.metrics') @include('partials.modules.stickied')