Hide scrollbar if content height is smaller than scroll node height (#7220)
This commit is contained in:
@@ -750,6 +750,8 @@ export default class ScrollPanel extends React.Component<IProps> {
|
||||
const minHeight = sn.clientHeight;
|
||||
const height = Math.max(minHeight, contentHeight);
|
||||
this.pages = Math.ceil(height / PAGE_SIZE);
|
||||
const displayScrollbar = contentHeight > minHeight;
|
||||
sn.dataset.scrollbar = displayScrollbar.toString();
|
||||
this.bottomGrowth = 0;
|
||||
const newHeight = `${this.getListHeight()}px`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user