mirror of https://github.com/vector-im/riot-web
remove unneeded else
parent
034883dc7e
commit
7e25e1b2fc
|
@ -1172,7 +1172,7 @@ const TimelinePanel = React.createClass({
|
|||
// return the index of the first invisible event.
|
||||
if (isInView && adjacentInvisibleEventCount !== 0) {
|
||||
return i + adjacentInvisibleEventCount;
|
||||
} else {
|
||||
}
|
||||
if (node && !isInView) {
|
||||
// has node but not in view, so reset adjacent invisible events
|
||||
adjacentInvisibleEventCount = 0;
|
||||
|
@ -1201,7 +1201,6 @@ const TimelinePanel = React.createClass({
|
|||
return i;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue