Fix sub-lists on notifications page

Created a new ul element for notifications that contain an
embedded status.
This commit is contained in:
St John Karp 2018-10-07 19:33:41 -07:00
parent 52a9cf68cd
commit a765bb5552
1 changed files with 4 additions and 2 deletions

View File

@ -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>