mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-18 14:44:58 +08:00
PR feedback
This commit is contained in:
parent
d86fe0df6e
commit
824b29dc1f
@ -78,7 +78,7 @@ module.exports = withMatrixClient(React.createClass({
|
||||
// return to the user list
|
||||
dis.dispatch({
|
||||
action: "view_user",
|
||||
groupMember: null,
|
||||
member: null,
|
||||
});
|
||||
}).catch((e) => {
|
||||
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
|
||||
@ -97,7 +97,7 @@ module.exports = withMatrixClient(React.createClass({
|
||||
// Go back to the user list
|
||||
dis.dispatch({
|
||||
action: "view_user",
|
||||
groupMember: null,
|
||||
member: null,
|
||||
});
|
||||
},
|
||||
|
||||
@ -116,7 +116,7 @@ module.exports = withMatrixClient(React.createClass({
|
||||
if (!this.state.groupMembers) return null;
|
||||
|
||||
const targetIsInGroup = this.state.groupMembers.some((m) => {
|
||||
return m.userId == this.props.groupMember.userId;
|
||||
return m.userId === this.props.groupMember.userId;
|
||||
});
|
||||
|
||||
let kickButton;
|
||||
|
@ -90,6 +90,7 @@ export default withMatrixClient(React.createClass({
|
||||
let memberList = this.state.members;
|
||||
if (query) {
|
||||
memberList = memberList.filter((m) => {
|
||||
// TODO: add this when we have this info from the API
|
||||
//const matchesName = m.name.toLowerCase().indexOf(query) !== -1;
|
||||
const matchesId = m.userId.toLowerCase().includes(query);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user