mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Add click-to-open-settings functionality to GroupAvatar
This commit is contained in:
parent
b5c9fa4caa
commit
e89371fb1c
2 changed files with 2 additions and 0 deletions
|
@ -918,6 +918,7 @@ export default React.createClass({
|
||||||
avatarNode = <GroupAvatar
|
avatarNode = <GroupAvatar
|
||||||
groupId={this.props.groupId}
|
groupId={this.props.groupId}
|
||||||
groupAvatarUrl={groupAvatarUrl}
|
groupAvatarUrl={groupAvatarUrl}
|
||||||
|
onClick={this._onEditClick}
|
||||||
width={48} height={48}
|
width={48} height={48}
|
||||||
/>;
|
/>;
|
||||||
if (summary.profile && summary.profile.name) {
|
if (summary.profile && summary.profile.name) {
|
||||||
|
|
|
@ -28,6 +28,7 @@ export default React.createClass({
|
||||||
width: PropTypes.number,
|
width: PropTypes.number,
|
||||||
height: PropTypes.number,
|
height: PropTypes.number,
|
||||||
resizeMethod: PropTypes.string,
|
resizeMethod: PropTypes.string,
|
||||||
|
onClick: PropTypes.func,
|
||||||
},
|
},
|
||||||
|
|
||||||
getDefaultProps: function() {
|
getDefaultProps: function() {
|
||||||
|
|
Loading…
Reference in a new issue