From 3a6d2f16b0023607680c70929eb12dfaf888bb90 Mon Sep 17 00:00:00 2001 From: "Tom (plebeius.eth)" Date: Thu, 6 Jun 2024 18:09:45 +0200 Subject: [PATCH] fix: wrong mobile value --- .../post-menu-mobile/post-menu-mobile.module.css | 1 + src/components/post/post-mobile/post-mobile.tsx | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/post/post-mobile/post-menu-mobile/post-menu-mobile.module.css b/src/components/post/post-mobile/post-menu-mobile/post-menu-mobile.module.css index 3f962756..02d261a2 100644 --- a/src/components/post/post-mobile/post-menu-mobile/post-menu-mobile.module.css +++ b/src/components/post/post-mobile/post-menu-mobile/post-menu-mobile.module.css @@ -10,6 +10,7 @@ font-weight: 700; font-size: 16px; height: 100%; + cursor: pointer; } .postMenu { diff --git a/src/components/post/post-mobile/post-mobile.tsx b/src/components/post/post-mobile/post-mobile.tsx index 61b19dc7..8f921abf 100644 --- a/src/components/post/post-mobile/post-mobile.tsx +++ b/src/components/post/post-mobile/post-mobile.tsx @@ -195,18 +195,18 @@ const PostMobile = ({ openReplyModal, post, roles, showAllReplies, showReplies = return (
- {showAllReplies && ( + {showReplies && (

)} -
+
{content && }
- {!isInPostView && !isInPendingPostView && ( + {!isInPostView && !isInPendingPostView && showReplies && (
{replyCount > 0 && `${replyCount} Replies`}