From 0dab85bfe93f924a829b7fefcbeee61b1f31a62e Mon Sep 17 00:00:00 2001 From: James Morris Date: Fri, 22 Jul 2022 11:26:44 +0100 Subject: [PATCH] Added in some basic hover to the action buttons refs https://github.com/TryGhost/Team/issues/1703 --- apps/comments-ui/src/components/Like.js | 4 ++-- apps/comments-ui/src/components/More.js | 2 +- apps/comments-ui/src/components/Reply.js | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/comments-ui/src/components/Like.js b/apps/comments-ui/src/components/Like.js index ffc8a862b3..6114627a7d 100644 --- a/apps/comments-ui/src/components/Like.js +++ b/apps/comments-ui/src/components/Like.js @@ -35,8 +35,8 @@ function Like(props) { } return ( - - + + {props.comment.likes_count} ); diff --git a/apps/comments-ui/src/components/More.js b/apps/comments-ui/src/components/More.js index 3130be4375..31d3cfcc00 100644 --- a/apps/comments-ui/src/components/More.js +++ b/apps/comments-ui/src/components/More.js @@ -29,7 +29,7 @@ const More = (props) => { return (
- {show ? : null} + {show ? : null} {isContextMenuOpen ? : null}
); diff --git a/apps/comments-ui/src/components/Reply.js b/apps/comments-ui/src/components/Reply.js index 8ea6f3ef6e..7316a63ae4 100644 --- a/apps/comments-ui/src/components/Reply.js +++ b/apps/comments-ui/src/components/Reply.js @@ -6,8 +6,8 @@ function Reply(props) { const {member} = useContext(AppContext); return member ? - () : null; }