Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
Fix linter.
Browse files Browse the repository at this point in the history
  • Loading branch information
vlad-shatskyi committed Jun 3, 2016
1 parent 5416777 commit 6391d79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/views/BufferComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ export class BufferComponent extends React.Component<Props, State> {
<div className="output"
style={css.output(this.props.job.screenBuffer.activeScreenBufferType, this.props.job.status)}>
{this.shouldCutOutput ? <Cut job={this.props.job} clickHandler={() => this.setState({ expandButtonPressed: true })}/> : undefined}
{this.renderableRows.map((row, index) => <RowComponent row={row || List<Char>()} key={index} style={css.row(this.props.job.status, this.props.job.screenBuffer.activeScreenBufferType)}/>)}
{this.renderableRows.map((row, index) =>
<RowComponent row={row || List<Char>()} key={index} style={css.row(this.props.job.status, this.props.job.screenBuffer.activeScreenBufferType)}/>
)}
</div>
);
}
Expand Down

0 comments on commit 6391d79

Please sign in to comment.