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

Commit 65f63de

Browse files
committed
Fix row height for empty rows.
1 parent ef028e4 commit 65f63de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/views/BufferComponent.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ class RowComponent extends React.Component<RowProps, {}> {
6363

6464
return <div className="output-row"
6565
key={rowIndex}
66-
style={css.row(this.props.job.status, this.props.job.screenBuffer.activeScreenBufferType)}
6766
ref={(div: HTMLElement | undefined) => div && div.scrollIntoViewIfNeeded()}>{charGroups}</div>;
6867
});
6968

70-
return <div className="wrapped-output-row">{outputRows}</div>;
69+
return <div className="wrapped-output-row"
70+
style={css.row(this.props.job.status, this.props.job.screenBuffer.activeScreenBufferType)}>
71+
{outputRows}
72+
</div>;
7173
}
7274
}
7375

0 commit comments

Comments
 (0)