Skip to content

Commit b7839eb

Browse files
committed
fix serial-monitor-messages box height
1 parent 8c91be9 commit b7839eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arduino-ide-extension/src/browser/monitor/serial-monitor-send-output.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class SerialMonitorOutput extends React.Component<
3232

3333
render(): React.ReactNode {
3434
return (
35-
<React.Fragment>
35+
<div style={{ height: '100%' }}>
3636
<AutoSizer>
3737
{({ height, width }) => (
3838
<List
@@ -54,7 +54,7 @@ export class SerialMonitorOutput extends React.Component<
5454
</List>
5555
)}
5656
</AutoSizer>
57-
</React.Fragment>
57+
</div>
5858
);
5959
}
6060

0 commit comments

Comments
 (0)