Fix ScrollPanel data-scrollbar not responding to window resizing (#7841)

This commit is contained in:
Michael Telatynski 2022-02-18 13:03:16 +00:00 committed by GitHub
parent 6fccd6b183
commit 29c1c8d1e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 6 deletions

View file

@ -47,10 +47,6 @@ export default class AutoHideScrollbar extends React.Component<IProps> {
}
}
public getScrollTop(): number {
return this.containerRef.current.scrollTop;
}
public render() {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const { className, onScroll, onWheel, style, tabIndex, wrappedRef, children, ...otherProps } = this.props;