add isGroup test

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

@ -122,7 +122,7 @@ const HeaderItem = () => {
avatarPath, avatarPath,
isPublic, isPublic,
id, id,
weAreAdmin, isGroup,
isKickedFromGroup, isKickedFromGroup,
profileName, profileName,
phoneNumber, phoneNumber,
@ -131,7 +131,7 @@ const HeaderItem = () => {
name, name,
} = selectedConversation; } = selectedConversation;
const showInviteContacts = !isKickedFromGroup && !isBlocked && !left; const showInviteContacts = isGroup && !isKickedFromGroup && !isBlocked && !left;
const userName = name || profileName || phoneNumber; const userName = name || profileName || phoneNumber;
return ( 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; const showAddRemoveModeratorsButton = weAreAdmin && !commonNoShow && isPublic;

Loading…
Cancel
Save