Skip to content

Commit

Permalink
fix: overflow bug on itinerary results
Browse files Browse the repository at this point in the history
  • Loading branch information
amy-corson-ibigroup committed Jun 25, 2024
1 parent 046bc16 commit 13edd96
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/components/app/batch-routing-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class BatchRoutingPanel extends Component<Props> {
)}
</TransitionGroup>
</form>
<TransitionGroup style={{ height: '100%' }}>
<TransitionGroup style={{ display: 'contents' }}>
{!this.state.showAdvancedModeSettings && (
<CSSTransition
classNames={mainPanelClassName}
Expand All @@ -171,19 +171,17 @@ class BatchRoutingPanel extends Component<Props> {
>
<div
ref={this._itinerariesAndUserRef}
style={{ height: '100%' }}
style={{ height: '100%', overflowY: 'scroll' }}
>
{!activeSearch && showUserSettings && (
<UserSettings
style={{ margin: '0 10px', overflowY: 'auto' }}
/>
)}

<div
className="desktop-narrative-container"
style={{
flexGrow: 1,
height: '100%',
overflowY: 'hidden'
}}
>
Expand Down

0 comments on commit 13edd96

Please sign in to comment.