mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 00:31:31 +03:00
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
var dis = require("../../dispatcher");
|
|
|
|
var MatrixClientPeg = require("../../MatrixClientPeg");
|
|
|
|
module.exports = {
|
|
onClick: function() {
|
|
dis.dispatch({
|
|
action: 'view_user',
|
|
user_id: this.props.member.userId
|
|
});
|
|
},
|
|
};
|