Updated GroupMembers feature to not show action button if isAdmin and is current user
• Updated: - GroupMembers feature to not show action button if isAdmin and is current user
This commit is contained in:
parent
017eb0e99d
commit
3369f559a7
@ -3,6 +3,7 @@ import ImmutablePropTypes from 'react-immutable-proptypes'
|
|||||||
import debounce from 'lodash.debounce'
|
import debounce from 'lodash.debounce'
|
||||||
import isObject from 'lodash.isobject'
|
import isObject from 'lodash.isobject'
|
||||||
import { FormattedMessage } from 'react-intl'
|
import { FormattedMessage } from 'react-intl'
|
||||||
|
import { me } from '../initial_state'
|
||||||
import {
|
import {
|
||||||
fetchMembers,
|
fetchMembers,
|
||||||
expandMembers,
|
expandMembers,
|
||||||
@ -128,7 +129,7 @@ class GroupMembers extends ImmutablePureComponent {
|
|||||||
compact
|
compact
|
||||||
key={id}
|
key={id}
|
||||||
id={id}
|
id={id}
|
||||||
actionIcon={!isAdmin ? undefined : 'ellipsis'}
|
actionIcon={(!isAdmin || id === me) ? undefined : 'ellipsis'}
|
||||||
onActionClick={(data, event) => {
|
onActionClick={(data, event) => {
|
||||||
return !isAdmin ? false : this.handleOpenGroupMemberOptions(event, id)
|
return !isAdmin ? false : this.handleOpenGroupMemberOptions(event, id)
|
||||||
}}
|
}}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user