Log if `<Timeline>` row count is 0

Co-authored-by: Evan Hahn <69474926+EvanHahn-Signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2022-02-10 12:27:56 -08:00 committed by GitHub
parent bbe4ef8673
commit e2825a7fbf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,8 @@ import {
} from 'react-virtualized';
import Measure from 'react-measure';
import * as log from '../../logging/log';
import { ScrollDownButton } from './ScrollDownButton';
import type { AssertProps, LocalizerType, ThemeType } from '../../types/Util';
@ -1283,6 +1285,7 @@ export class Timeline extends React.PureComponent<PropsType, StateType> {
const scrollToIndex = this.getScrollTarget();
if (!items || rowCount === 0) {
log.error('<Timeline> row count is 0');
return null;
}