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.
This commit is contained in:
St John Karp 2018-10-08 07:05:50 -07:00
parent 52f0cf1fe7
commit 24dc518fc3
1 changed files with 4 additions and 2 deletions

View File

@ -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') }}">