mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 00:33:38 -05:00
fix(group): fixed height in members list
This commit is contained in:
parent
614ec68622
commit
ef0644074c
1 changed files with 4 additions and 1 deletions
|
@ -169,6 +169,9 @@ export const GroupMemberSidebar = observer(
|
|||
|
||||
return (
|
||||
<GenericSidebarBase>
|
||||
<Container>
|
||||
{isTouchscreenDevice && <div>Group settings go here</div>}
|
||||
</Container>
|
||||
<MemberList entries={entries} context={channel} />
|
||||
</GenericSidebarBase>
|
||||
);
|
||||
|
@ -192,7 +195,7 @@ export const ServerMemberSidebar = observer(
|
|||
|
||||
return (
|
||||
<GenericSidebarBase>
|
||||
<Container className="test">
|
||||
<Container>
|
||||
{isTouchscreenDevice && <div>Server settings go here</div>}
|
||||
</Container>
|
||||
<MemberList entries={entries} context={channel} />
|
||||
|
|
Loading…
Reference in a new issue