From bfa68fc9b57b9215c0be9c1a705a612deeeab782 Mon Sep 17 00:00:00 2001 From: Brice-W Date: Tue, 27 Jul 2021 12:05:49 +1000 Subject: [PATCH] add isGroup test --- ts/components/session/conversation/SessionRightPanel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/components/session/conversation/SessionRightPanel.tsx b/ts/components/session/conversation/SessionRightPanel.tsx index 972e0ecde..30e47cb45 100644 --- a/ts/components/session/conversation/SessionRightPanel.tsx +++ b/ts/components/session/conversation/SessionRightPanel.tsx @@ -122,7 +122,7 @@ const HeaderItem = () => { avatarPath, isPublic, id, - weAreAdmin, + isGroup, isKickedFromGroup, profileName, phoneNumber, @@ -131,7 +131,7 @@ const HeaderItem = () => { name, } = selectedConversation; - const showInviteContacts = !isKickedFromGroup && !isBlocked && !left; + const showInviteContacts = isGroup && !isKickedFromGroup && !isBlocked && !left; const userName = name || profileName || phoneNumber; return ( @@ -249,7 +249,7 @@ export const SessionRightPanelWithDetails = () => { }; }); - const showUpdateGroupNameButton = (!isPublic || isPublic && weAreAdmin) && !commonNoShow; + const showUpdateGroupNameButton = isGroup && (!isPublic || isPublic && weAreAdmin) && !commonNoShow; const showAddRemoveModeratorsButton = weAreAdmin && !commonNoShow && isPublic;