diff --git a/page/src/components/output.tsx b/page/src/components/output.tsx index 21f65421..22546e14 100644 --- a/page/src/components/output.tsx +++ b/page/src/components/output.tsx @@ -190,6 +190,7 @@ export class Output extends React.Component { this.logLine = this.logLine.bind(this); this.logLines = this.logLines.bind(this); this.handleScroll = this.handleScroll.bind(this); + this.scrollListToEnd = this.scrollListToEnd.bind(this); this.updateDimensions = this.updateDimensions.bind(this); this.outputRef = React.createRef(); @@ -334,20 +335,16 @@ export class Output extends React.Component { rowHeight={20} style={{ height: this.state.height, width: this.state.width }} /> - - {this.state.autoScroll ? ( - <> - ) : ( - - )} + ); }