Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the horizonal and vertical extra scroll bar issue #5159

Merged
merged 1 commit into from Dec 13, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -421,7 +421,7 @@ export class ExperimentRunsTableCompactView extends React.Component {
return (
<div
id='autosizer-container'
className='runs-table-flex-container'
className='runs-table-flex-container compact-view-table-container'
data-test-id='compact-runs-table-view'
>
<AutoSizer>
Expand Down
Expand Up @@ -522,6 +522,7 @@ export class ExperimentRunsTableMultiColumnView2 extends React.Component {
defaultColDef={defaultColDef}
columnDefs={this.state.columnDefs}
rowData={this.getRowData()}
domLayout='autoHeight'
modules={[Grid, ClientSideRowModelModule]}
rowSelection='multiple'
onGridReady={this.handleGridReady}
Expand Down
Expand Up @@ -328,11 +328,13 @@ span.error-message {
flex: 1 1 auto;
flex-direction: column;
display: flex;
min-height: 800px;
overflow-x: scroll;
border-radius: 4px;
}

.compact-view-table-container {
min-height: 800px;
}

.ExperimentView-runs {
padding-top: 5px;
}
Expand Down Expand Up @@ -396,7 +398,6 @@ span.error-message {

.ExperimentView .multi-column-view {
width: 100%;
height: 700px;
margin-bottom: 50px;
}

Expand Down