Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/2 Fixes/8010.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix python.dataScience.maxOutputSize to be honored again.
1 change: 1 addition & 0 deletions src/datascience-ui/history-react/interactiveCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export class InteractiveCell extends React.Component<IInteractiveCellProps> {
baseTheme={this.props.baseTheme}
expandImage={this.props.expandImage}
openLink={this.props.openLink}
maxTextSize={this.props.maxTextSize}
/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/datascience-ui/interactive-common/cellOutput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export class CellOutput extends React.Component<ICellOutputProps> {
data: concatMultilineStringOutput(data as nbformat.MultilineString),
isText,
isError,
renderWithScrollbars,
renderWithScrollbars: true,
extraButton,
doubleClick: noop
};
Expand Down
1 change: 1 addition & 0 deletions src/datascience-ui/native-editor/nativeCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -697,6 +697,7 @@ export class NativeCell extends React.Component<INativeCellProps> {
baseTheme={this.props.baseTheme}
expandImage={this.props.stateController.showPlot}
openLink={this.props.stateController.openLink}
maxTextSize={this.props.maxTextSize}
/>
);
}
Expand Down