|
|
|
@ -42,11 +42,11 @@ import { AttachmentTypeWithPath } from '../../../../types/Attachment';
|
|
|
|
|
import { getAbsoluteAttachmentPath } from '../../../../types/MessageAttachment';
|
|
|
|
|
import { Avatar, AvatarSize } from '../../../avatar/Avatar';
|
|
|
|
|
import { Flex } from '../../../basic/Flex';
|
|
|
|
|
import { SpacerMD } from '../../../basic/Text';
|
|
|
|
|
import { SpacerLG, SpacerMD, SpacerXL } from '../../../basic/Text';
|
|
|
|
|
import { PanelButtonGroup, PanelIconButton } from '../../../buttons';
|
|
|
|
|
import { MediaItemType } from '../../../lightbox/LightboxGallery';
|
|
|
|
|
import { MediaGallery } from '../../media-gallery/MediaGallery';
|
|
|
|
|
import { Header } from './components';
|
|
|
|
|
import { Header, StyledScrollContainer } from './components';
|
|
|
|
|
|
|
|
|
|
async function getMediaGalleryProps(
|
|
|
|
|
conversationId: string
|
|
|
|
@ -278,7 +278,8 @@ export const OverlayRightPanelSettings = () => {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<>
|
|
|
|
|
<StyledScrollContainer>
|
|
|
|
|
<Flex container={true} flexDirection={'column'} alignItems={'center'}>
|
|
|
|
|
<HeaderItem />
|
|
|
|
|
<PanelButtonGroup style={{ margin: '0 var(--margins-lg)' }}>
|
|
|
|
|
{showUpdateGroupNameButton && (
|
|
|
|
@ -349,6 +350,9 @@ export const OverlayRightPanelSettings = () => {
|
|
|
|
|
/>
|
|
|
|
|
)}
|
|
|
|
|
</PanelButtonGroup>
|
|
|
|
|
</>
|
|
|
|
|
<SpacerLG />
|
|
|
|
|
<SpacerXL />
|
|
|
|
|
</Flex>
|
|
|
|
|
</StyledScrollContainer>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|