removing alt=av
This commit is contained in:
@@ -2055,7 +2055,7 @@ class CommentSystem {
|
||||
<div class="${commentClass} ${isDeleted ? 'deleted' : ''} ${isPinned ? 'pinned' : ''}" id="c${comment.id}">
|
||||
<div class="comment-avatar">
|
||||
${comment.username ? `<a href="/user/${comment.username}">` : ''}
|
||||
<img src="${comment.avatar_file ? `/a/${comment.avatar_file}` : (comment.avatar ? `/t/${comment.avatar}.webp` : '/a/default.png')}" alt="av">
|
||||
<img src="${comment.avatar_file ? `/a/${comment.avatar_file}` : (comment.avatar ? `/t/${comment.avatar}.webp` : '/a/default.png')}">
|
||||
${comment.username ? `</a>` : ''}
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
|
||||
@@ -7481,7 +7481,7 @@ class NotificationSystem {
|
||||
<div class="comment" id="c${c.id}" style="margin-bottom: 20px; border-bottom: 1px solid #333; padding-bottom: 20px;">
|
||||
<div class="comment-avatar">
|
||||
<a href="/user/${c.username.toLowerCase()}">
|
||||
<img src="${avatar}" alt="av">
|
||||
<img src="${avatar}">
|
||||
</a>
|
||||
</div>
|
||||
<div class="comment-body">
|
||||
|
||||
Reference in New Issue
Block a user