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 75774c5 commit 798cf0fCopy full SHA for 798cf0f
src/containers/Node/Node.tsx
@@ -126,7 +126,7 @@ export function Node(props: NodeProps) {
126
switch (activeTabVerified.id) {
127
case STORAGE: {
128
return (
129
- <div className={b('storage')}>
+ <div className={b('storage')} ref={container}>
130
<StorageWrapper nodeId={nodeId} parentRef={container} />
131
</div>
132
);
@@ -159,7 +159,7 @@ export function Node(props: NodeProps) {
159
160
if (node) {
161
162
- <div className={b(null, props.className)} ref={container}>
+ <div className={b(null, props.className)}>
163
<Helmet
164
titleTemplate={`%s — ${node.Host} — YDB Monitoring`}
165
defaultTitle={`${node.Host} — YDB Monitoring`}
0 commit comments