Skip to content

Commit 798cf0f

Browse files
committed
fix: Nodes page scrolling
1 parent 75774c5 commit 798cf0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/containers/Node/Node.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export function Node(props: NodeProps) {
126126
switch (activeTabVerified.id) {
127127
case STORAGE: {
128128
return (
129-
<div className={b('storage')}>
129+
<div className={b('storage')} ref={container}>
130130
<StorageWrapper nodeId={nodeId} parentRef={container} />
131131
</div>
132132
);
@@ -159,7 +159,7 @@ export function Node(props: NodeProps) {
159159

160160
if (node) {
161161
return (
162-
<div className={b(null, props.className)} ref={container}>
162+
<div className={b(null, props.className)}>
163163
<Helmet
164164
titleTemplate={`%s — ${node.Host} — YDB Monitoring`}
165165
defaultTitle={`${node.Host} — YDB Monitoring`}

0 commit comments

Comments
 (0)