Fix issue where the user login on an action might be empty
This commit is contained in:
parent
70fa331f46
commit
ce2024b943
@ -27,7 +27,11 @@
|
||||
</code>
|
||||
</td>
|
||||
@endif
|
||||
<td class="px-4 py-2 border">{{ $action->user->login }}</td>
|
||||
<td class="px-4 py-2 border">
|
||||
@if (!empty($action->user))
|
||||
{{ $action->user->login }}
|
||||
@endif
|
||||
</td>
|
||||
@if ($showChannel)
|
||||
@php
|
||||
$channel = $action->channel->username();
|
||||
|
Loading…
Reference in New Issue
Block a user