We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9693c1 commit 8af69bcCopy full SHA for 8af69bc
src/dashboard/Data/Browser/DataBrowser.react.js
@@ -223,7 +223,14 @@ export default class DataBrowser extends React.Component {
223
this.state.isPanelVisible &&
224
this.aggregationPanelRef?.current
225
) {
226
- this.aggregationPanelRef.current.scrollTop = 0;
+ const panel = this.aggregationPanelRef.current;
227
+ panel.scrollTop = 0;
228
+ panel.style.overflowY = 'hidden';
229
+ setTimeout(() => {
230
+ if (panel === this.aggregationPanelRef.current) {
231
+ panel.style.overflowY = 'auto';
232
+ }
233
+ }, 0);
234
}
235
236
0 commit comments