mirror of https://github.com/vector-im/riot-web
Merge pull request #1443 from matrix-org/dbkr/fix_3pid_invites
Fix showing 3pid invites in member listpull/21833/head
commit
8d189cc322
|
@ -372,7 +372,7 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
_getChildrenInvited: function(start, end) {
|
_getChildrenInvited: function(start, end) {
|
||||||
return this._makeMemberTiles(this.state.filteredInvitedMembers.slice(start, end));
|
return this._makeMemberTiles(this.state.filteredInvitedMembers.slice(start, end), 'invite');
|
||||||
},
|
},
|
||||||
|
|
||||||
_getChildCountInvited: function() {
|
_getChildCountInvited: function() {
|
||||||
|
|
Loading…
Reference in New Issue