planiverse

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

commit 24dc518fc3ce55611f4ade415c25f5a190b8c2ab
parent 52f0cf1fe7c92e4f1f8680796325252280ee1707
Author: St John Karp <stjohn@fuzzjunket.com>
Date:   Mon,  8 Oct 2018 07:05:50 -0700

Wrap a single status in a ul when replying

When showing a single status we still need to wrap it in a ul
or there'll be a weird dot.

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

diff --git a/resources/views/show_status.blade.php b/resources/views/show_status.blade.php @@ -15,8 +15,10 @@ @component('navigation') @endcomponent - @component('status', ['status' => $status]) - @endcomponent + <ul> + @component('status', ['status' => $status]) + @endcomponent + </ul> @if ($logged_in) <form method="post" action="{{ route('post_status') }}">