Skip to content

Commit 85a6015

Browse files
authored
Add scrollbar to list of steps in Console view (#157)
Co-authored-by: Tim <[email protected]>
1 parent c10772f commit 85a6015

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/frontend/pipeline-console-view/pipeline-console/main/PipelineConsole.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,12 @@ export class PipelineConsole extends React.Component<
229229
render() {
230230
const splitPaneStyle: React.CSSProperties = {
231231
position: "relative",
232-
height: "100%",
233232
};
234233
const paneStyle: React.CSSProperties = {
235234
paddingLeft: "8px",
236235
textAlign: "left",
236+
height: "calc(100vh - 300px)",
237+
overflowY: "scroll",
237238
};
238239

239240
const lineChunks = this.state.consoleText

0 commit comments

Comments
 (0)