diff --git a/app/Domain/Icon/FontAwesomeFree.php b/app/Domain/Icon/FontAwesomeFree.php index cc0e23bfb..bdc7d6d0e 100644 --- a/app/Domain/Icon/FontAwesomeFree.php +++ b/app/Domain/Icon/FontAwesomeFree.php @@ -277,6 +277,7 @@ public function icons(): array 'postDeleted' => 'fa-solid fa-trash-can', 'postAuthorBlocked' => 'fa-solid fa-user-slash', 'postAccept' => $faTick, + 'postAcceptAccepted' => $faTick, 'postEditHistoryShow' => 'fas fa-up-right-from-square', 'postFoldedCommentsUnfold' => 'far fa-comments', 'postVote' => 'far fa-thumbs-up', diff --git a/app/Domain/Icon/FontAwesomePro.php b/app/Domain/Icon/FontAwesomePro.php index 03ea44135..56b807e32 100644 --- a/app/Domain/Icon/FontAwesomePro.php +++ b/app/Domain/Icon/FontAwesomePro.php @@ -281,6 +281,7 @@ public function icons(): array 'postDeleted' => 'fa-light fa-trash-can', 'postAuthorBlocked' => 'fa-light fa-user-slash', 'postAccept' => $faTick, + 'postAcceptAccepted' => 'fa-light fa-circle-check', 'postEditHistoryShow' => 'fa-light fa-up-right-from-square', 'postFoldedCommentsUnfold' => 'fa-light fa-comments', 'postVote' => 'fa-light fa-thumbs-up', diff --git a/resources/js/components/forum/post.vue b/resources/js/components/forum/post.vue index 9b13a9e75..bcaf3552d 100644 --- a/resources/js/components/forum/post.vue +++ b/resources/js/components/forum/post.vue @@ -308,12 +308,12 @@