We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2552d9 commit 5ac8b30Copy full SHA for 5ac8b30
1 file changed
packages/module/src/components/nodes/DefaultNode.tsx
@@ -388,7 +388,11 @@ const DefaultNodeInner: React.FunctionComponent<DefaultNodeInnerProps> = observe
388
</g>
389
);
390
if (isHover && raiseLabelOnHover) {
391
- return <Layer id={TOP_LAYER}>{nodeLabel}</Layer>;
+ return (
392
+ <Layer id={TOP_LAYER}>
393
+ <g className={groupClassName}>{nodeLabel}</g>
394
+ </Layer>
395
+ );
396
}
397
return nodeLabel;
398
};
0 commit comments