Fix soft crash from TruncatedList in the createReactClass conversion

This commit is contained in:
Michael Telatynski 2020-09-04 09:24:12 +01:00
parent e624ce11b4
commit 6d811734f4

View File

@ -247,15 +247,15 @@ export default class MemberList extends React.Component {
return filteredAndSortedMembers;
}
_createOverflowTileJoined(overflowCount, totalCount) {
_createOverflowTileJoined = (overflowCount, totalCount) => {
return this._createOverflowTile(overflowCount, totalCount, this._showMoreJoinedMemberList);
}
};
_createOverflowTileInvited(overflowCount, totalCount) {
_createOverflowTileInvited = (overflowCount, totalCount) => {
return this._createOverflowTile(overflowCount, totalCount, this._showMoreInvitedMemberList);
}
};
_createOverflowTile(overflowCount, totalCount, onClick) {
_createOverflowTile = (overflowCount, totalCount, onClick) => {
// For now we'll pretend this is any entity. It should probably be a separate tile.
const EntityTile = sdk.getComponent("rooms.EntityTile");
const BaseAvatar = sdk.getComponent("avatars.BaseAvatar");
@ -266,7 +266,7 @@ export default class MemberList extends React.Component {
} name={text} presenceState="online" suppressOnHover={true}
onClick={onClick} />
);
}
};
_showMoreJoinedMemberList = () => {
this.setState({