mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 15:19:39 +03:00
don't lose date seperator when the first event of the new day is redacted
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
d2d0ba952a
commit
5e2e550bf9
1 changed files with 2 additions and 2 deletions
|
@ -422,8 +422,6 @@ module.exports = React.createClass({
|
|||
},
|
||||
|
||||
_getTilesForEvent: function(prevEvent, mxEv, last) {
|
||||
if (mxEv.isRedacted() && this.props.hideRedactions) return [];
|
||||
|
||||
const EventTile = sdk.getComponent('rooms.EventTile');
|
||||
const DateSeparator = sdk.getComponent('messages.DateSeparator');
|
||||
var ret = [];
|
||||
|
@ -468,6 +466,8 @@ module.exports = React.createClass({
|
|||
continuation = false;
|
||||
}
|
||||
|
||||
if (mxEv.isRedacted() && this.props.hideRedactions) return ret;
|
||||
|
||||
var eventId = mxEv.getId();
|
||||
var highlight = (eventId == this.props.highlightedEventId);
|
||||
|
||||
|
|
Loading…
Reference in a new issue