diff --git a/web/app/components/workflow/comment/thread.tsx b/web/app/components/workflow/comment/thread.tsx index 3098198a6b..14f6b00d74 100644 --- a/web/app/components/workflow/comment/thread.tsx +++ b/web/app/components/workflow/comment/thread.tsx @@ -307,12 +307,13 @@ export const CommentThread: FC = memo(({
{replies.map((reply) => { const isReplyEditing = editingReply?.id === reply.id + const isOwnReply = reply.created_by_account?.id === userProfile?.id return (
- {!isReplyEditing && ( + {isOwnReply && !isReplyEditing && (