diff --git a/ui/component/commentMenuList/view.jsx b/ui/component/commentMenuList/view.jsx index b938f1b16..c2ef10c29 100644 --- a/ui/component/commentMenuList/view.jsx +++ b/ui/component/commentMenuList/view.jsx @@ -20,6 +20,7 @@ type Props = { disableEdit?: boolean, disableRemove?: boolean, supportAmount?: any, + isLiveComment: boolean, // --- select --- claim: ?Claim, claimIsMine: boolean, @@ -54,6 +55,7 @@ function CommentMenuList(props: Props) { disableEdit, disableRemove, supportAmount, + isLiveComment, doToast, handleEditComment, openModal, @@ -229,7 +231,7 @@ function CommentMenuList(props: Props) { </> )} - {IS_WEB && ( + {IS_WEB && !isLiveComment && ( <MenuItem className="comment__menu-option" onSelect={handleCopyCommentLink}> <div className="menu__link"> <Icon aria-hidden icon={ICONS.COPY_LINK} /> diff --git a/ui/component/livestreamComment/view.jsx b/ui/component/livestreamComment/view.jsx index cefdfc8ae..8fccfa43b 100644 --- a/ui/component/livestreamComment/view.jsx +++ b/ui/component/livestreamComment/view.jsx @@ -119,10 +119,11 @@ function LivestreamComment(props: Props) { commentId={commentId} authorUri={authorUri} commentIsMine={commentIsMine} - disableEdit - isTopLevel isPinned={isPinned} disableRemove={supportAmount > 0} + isTopLevel + disableEdit + isLiveComment /> </Menu> </div>