diff options
-rw-r--r-- | source/features/highest-rated-comment.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/features/highest-rated-comment.tsx b/source/features/highest-rated-comment.tsx index fff5839f..20b1ce28 100644 --- a/source/features/highest-rated-comment.tsx +++ b/source/features/highest-rated-comment.tsx @@ -81,6 +81,9 @@ function linkBestComment(bestComment: HTMLElement): void { link.removeAttribute('data-hovercard-url'); link.href = hash; + // Remove the check icon from the preview #3338 + select('.octicon-check.text-green', avatar)!.remove(); + // We don't copy the exact timeline item structure, so we need to align the avatar with the other avatars in the timeline. // TODO: update DOM to match other comments, instead of applying this CSS avatar.style.left = '-55px'; |