diff --git a/resources/views/livewire/comment-item.blade.php b/resources/views/livewire/comment-item.blade.php index b65e940..2e08625 100644 --- a/resources/views/livewire/comment-item.blade.php +++ b/resources/views/livewire/comment-item.blade.php @@ -32,13 +32,13 @@ {{-- Body or edit form --}} @if ($isEditing) -
+
{{ $this->editForm }}
- +
- +
@else
{!! $comment->renderBodyWithMentions() !!} @@ -104,7 +104,7 @@ {{-- Reply form --}} @if ($isReplying) -
+
{{ $this->replyForm }} @if (\Relaticle\Comments\CommentsConfig::areAttachmentsEnabled()) @@ -135,10 +135,10 @@ @endif
- +
- +
@endif {{-- Nested replies --}} diff --git a/resources/views/livewire/comments.blade.php b/resources/views/livewire/comments.blade.php index 2b3e4c7..79f6048 100644 --- a/resources/views/livewire/comments.blade.php +++ b/resources/views/livewire/comments.blade.php @@ -60,7 +60,7 @@ {{-- New comment form - only for authorized users --}} @auth @can('create', \Relaticle\Comments\CommentsConfig::getCommentModel()) -
+
{{ $this->commentForm }} @if (\Relaticle\Comments\CommentsConfig::areAttachmentsEnabled()) @@ -91,14 +91,14 @@ @endif
-
- +
@endcan @endauth