You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-30 02:21:17 +03:00
remove unneeded else
This commit is contained in:
@ -1172,7 +1172,7 @@ const TimelinePanel = React.createClass({
|
|||||||
// return the index of the first invisible event.
|
// return the index of the first invisible event.
|
||||||
if (isInView && adjacentInvisibleEventCount !== 0) {
|
if (isInView && adjacentInvisibleEventCount !== 0) {
|
||||||
return i + adjacentInvisibleEventCount;
|
return i + adjacentInvisibleEventCount;
|
||||||
} else {
|
}
|
||||||
if (node && !isInView) {
|
if (node && !isInView) {
|
||||||
// has node but not in view, so reset adjacent invisible events
|
// has node but not in view, so reset adjacent invisible events
|
||||||
adjacentInvisibleEventCount = 0;
|
adjacentInvisibleEventCount = 0;
|
||||||
@ -1201,7 +1201,6 @@ const TimelinePanel = React.createClass({
|
|||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user