Skip to content

Commit

Permalink
Fix posts avatars alt
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyWarZzeur committed Feb 8, 2020
1 parent d17a6fb commit 78e14a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/posts/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
@lang('messages.comments.author', ['user' => $comment->author->name, 'date' => format_date($comment->created_at, true)])
</div>
<div class="card-body media">
<img class="d-flex mr-3 rounded" src="{{ game()->getAvatarUrl($comment->author, 64) }}" alt="{{ Auth::user()->name }}" height="55">
<img class="d-flex mr-3 rounded" src="{{ game()->getAvatarUrl($comment->author, 64) }}" alt="{{ $comment->author->name }}" height="55">
<div class="media-body">
<div class="d-flex justify-content-between align-items-center">
<div class="content-body">
Expand Down

0 comments on commit 78e14a2

Please sign in to comment.