Skip to content

Commit

Permalink
Merge pull request jaegertracing#350 from jaegertracing/issue-241-ext…
Browse files Browse the repository at this point in the history
…ra-scrollbar

Fix jaegertracing#241, extra vertical scrollbar in trace timeline view
Signed-off-by: vvvprabhakar <[email protected]>
  • Loading branch information
tiffon authored Mar 19, 2019
2 parents cdf1e22 + d7a1c9f commit 42d9331
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 42d9331

Please sign in to comment.