planiverse

A minimalist, no-JS front-end for Mastodon.
git clone https://git.stjo.hn/planiverse
Log | Files | Refs | README | LICENSE

commit a765bb5552c0ae11b1ebedf6563345159cd6a082
parent 52a9cf68cd0736672434e608aead094a92799eeb
Author: St John Karp <stjohn@fuzzjunket.com>
Date:   Sun,  7 Oct 2018 19:33:41 -0700

Fix sub-lists on notifications page

Created a new ul element for notifications that contain an
embedded status.

Diffstat:
Mresources/views/notification.blade.php | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/resources/views/notification.blade.php b/resources/views/notification.blade.php @@ -7,7 +7,9 @@ @endcomponent @if ($notification['status'] ?? null !== null) - @component('status', ['status' => $notification['status']]) - @endcomponent + <ul> + @component('status', ['status' => $notification['status']]) + @endcomponent + </ul> @endif </article></li>