Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<time datetime="{{ $comment->created_at->format('Y-m-d H:i:d') }}">
<a href="#{{ $comment->id }}" class="footer-info" title="{{ trans('Permanent link to this comment') }}">
<a href="#comment-{{ $comment->id }}" class="footer-info" title="{{ trans('Permanent link to this comment') }}">
<x-icons.icon-component filename="clock" class="icon-small" />
{{ $comment->created_at->format('g:i a') }}
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@endphp

<article class="comment @if ($isRemoved) moderator-removed @endif"
id="comment-{{ $commentId }}"
data-comment-id="{{ $commentId }}"
@if (!$isRemoved)
data-member-id="{{ $comment->user->id }}"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="moderator-message moderation-action {{ $moderationClass }}">
<div class="moderator-message moderation-action {{ $moderationClass }}" id="comment-{{ $comment->id }}">
<aside class="moderation-action">
{{ trans($moderationAction) }}
</aside>
Expand Down