Updated GroupsPanel isSlim prop

• Updated:
- GroupsPanel isSlim prop
This commit is contained in:
mgabdev 2020-07-14 00:24:28 -05:00
parent f3e34d40d2
commit 84106dbe99

View File

@ -66,11 +66,11 @@ class GroupSidebarPanel extends ImmutablePureComponent {
} }
render() { render() {
const { intl, groupIds, slim } = this.props const { intl, groupIds, isSlim } = this.props
const { fetched } = this.state const { fetched } = this.state
const count = !!groupIds ? groupIds.count() : 0 const count = !!groupIds ? groupIds.count() : 0
const maxCount = slim ? 12 : 6 const maxCount = isSlim ? 12 : 6
if (count === 0 && fetched) return null if (count === 0 && fetched) return null
@ -81,7 +81,7 @@ class GroupSidebarPanel extends ImmutablePureComponent {
headerButtonTo='/groups/browse/member' headerButtonTo='/groups/browse/member'
footerButtonTitle={count > maxCount ? intl.formatMessage(messages.show_all) : undefined} footerButtonTitle={count > maxCount ? intl.formatMessage(messages.show_all) : undefined}
footerButtonTo={count > maxCount ? '/groups/browse/member' : undefined} footerButtonTo={count > maxCount ? '/groups/browse/member' : undefined}
noPadding={slim} noPadding
> >
<ScrollableList <ScrollableList
scrollKey='groups_panel' scrollKey='groups_panel'
@ -92,7 +92,6 @@ class GroupSidebarPanel extends ImmutablePureComponent {
<GroupListItem <GroupListItem
key={`group-panel-item-${groupId}`} key={`group-panel-item-${groupId}`}
id={groupId} id={groupId}
slim={slim}
isLast={groupIds.count() - 1 === i} isLast={groupIds.count() - 1 === i}
/> />
)) ))