fix(frontend): Maximize width of HTML visualization. Partial #6296 (#6319)

This commit is contained in:
James Liu 2021-08-15 19:02:05 -07:00 committed by GitHub
parent 50f7dcd5d0
commit 1828768f53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ class HTMLViewer extends Viewer<HTMLViewerProps, any> {
flexGrow: 1,
height: this.props.maxDimension ? this.props.maxDimension : 'initial',
minHeight: this.props.maxDimension ? this.props.maxDimension : 600,
width: this.props.maxDimension ? this.props.maxDimension : '100%',
width: '100%',
},
});