mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Use the first member event ID or "initial" in the MELS key
This commit is contained in:
parent
55f85befc1
commit
88aeb6417e
@ -301,7 +301,7 @@ module.exports = React.createClass({
|
||||
// instead will allow new props to be provided. In turn, the shouldComponentUpdate
|
||||
// method on MELS can be used to prevent unnecessary renderings.
|
||||
// `prevEvent` at this point is a non-member event or null.
|
||||
const key = "memberlistsummary-" + (prevEvent ? prevEvent.getId() : "");
|
||||
const key = "memberlistsummary-" + (prevEvent ? mxEv.getId() : "initial");
|
||||
|
||||
if (this._wantsDateSeparator(prevEvent, ts1)) {
|
||||
let dateSeparator = <li key={ts1+'~'}><DateSeparator key={ts1+'~'} ts={ts1}/></li>;
|
||||
|
Loading…
Reference in New Issue
Block a user