update displayed buttons on groups

pull/1793/head
Brice-W 4 years ago
parent 5f994851d1
commit b89f55dd02

@ -131,7 +131,7 @@ const HeaderItem = () => {
name, name,
} = selectedConversation; } = selectedConversation;
const showInviteContacts = (isPublic || weAreAdmin) && !isKickedFromGroup && !isBlocked && !left; const showInviteContacts = !isKickedFromGroup && !isBlocked && !left;
const userName = name || profileName || phoneNumber; const userName = name || profileName || phoneNumber;
return ( return (
@ -249,9 +249,10 @@ export const SessionRightPanelWithDetails = () => {
}; };
}); });
const showUpdateGroupNameButton = weAreAdmin && !commonNoShow; const showUpdateGroupNameButton = (!isPublic || isPublic && weAreAdmin) && !commonNoShow;
const showAddRemoveModeratorsButton = weAreAdmin && !commonNoShow && isPublic; const showAddRemoveModeratorsButton = weAreAdmin && !commonNoShow && isPublic;
const showUpdateGroupMembersButton = !isPublic && isGroup && !commonNoShow; const showUpdateGroupMembersButton = !isPublic && isGroup && !commonNoShow;
const deleteConvoAction = isPublic const deleteConvoAction = isPublic

Loading…
Cancel
Save