Skip to content

Commit

Permalink
Merge pull request #350 from jaegertracing/issue-241-extra-scrollbar
Browse files Browse the repository at this point in the history
Fix #241, extra vertical scrollbar in trace timeline view
  • Loading branch information
tiffon committed Mar 19, 2019
2 parents faf6fc9 + 788e3d5 commit 4f78dcf
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -440,15 +440,13 @@ export default class ListView extends React.Component<ListViewProps> {
onScroll?: Function,
};
const wrapperProps: wrapperPropsT = {
style: {
overflowY: 'auto',
position: 'relative',
height: '100%',
},
style: { position: 'relative' },
ref: this._initWrapper,
};
if (!this.props.windowScroller) {
wrapperProps.onScroll = this._onScroll;
wrapperProps.style.height = '100%';
wrapperProps.style.overflowY = 'auto';
}
const scrollerStyle = {
position: 'relative',
Expand Down

0 comments on commit 4f78dcf

Please sign in to comment.