Skip to content

Commit

Permalink
undo panel width size changess
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Nov 3, 2024
1 parent aa72ede commit c3950d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dashboard/Data/Browser/DataBrowser.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class DataBrowser extends React.Component {
firstSelectedCell: null,
selectedData: [],
prevClassName: props.className,
panelWidth: 400,
panelWidth: 300,
isResizing: false,
maxWidth: window.innerWidth - 300,
showAggregatedData: true,
Expand Down Expand Up @@ -591,7 +591,7 @@ export default class DataBrowser extends React.Component {
<ResizableBox
width={this.state.panelWidth}
height={Infinity}
minConstraints={[400, Infinity]}
minConstraints={[100, Infinity]}
maxConstraints={[this.state.maxWidth, Infinity]}
onResizeStart={this.handleResizeStart} // Handle start of resizing
onResizeStop={this.handleResizeStop} // Handle end of resizing
Expand Down

0 comments on commit c3950d1

Please sign in to comment.