Skip to content

Commit b89fe36

Browse files
authored
Add scrollbar to console text pane (#159)
1 parent e8c3fc1 commit b89fe36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ export class PipelineConsole extends React.Component<
384384
paddingLeft: "8px",
385385
textAlign: "left",
386386
height: "calc(100vh - 300px)",
387-
overflowY: "scroll",
387+
overflowY: "auto",
388388
};
389389

390390
return (
@@ -407,7 +407,7 @@ export class PipelineConsole extends React.Component<
407407
/>
408408
</div>
409409

410-
<div>
410+
<div style={paneStyle}>
411411
{this.renderStageDetails()}
412412
{this.renderStepDetails()}
413413
{this.renderConsoleOutput()}

0 commit comments

Comments
 (0)