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 07e3e9f commit c219d4bCopy full SHA for c219d4b
1 file changed
scripts/static/js/mainUI.js
@@ -46,6 +46,12 @@ tabs.forEach(tab => {
46
showSidebarContent(window._lastSelectedNodeData || null);
47
}
48
49
+ // Disable page scroll for graph tabs
50
+ if (tab === 'branching' || tab === 'performance') {
51
+ document.body.style.overflow = 'hidden';
52
+ } else {
53
+ document.body.style.overflow = '';
54
+ }
55
});
56
57
0 commit comments