diff --git a/components/graph/index.js b/components/graph/index.js index c9bddb2..7b5a6ae 100644 --- a/components/graph/index.js +++ b/components/graph/index.js @@ -588,7 +588,7 @@ const ClientText = connect( const ModuleText = ({ dgo, pai }) => r(React.Fragment, [ r.div({ className: 'node-name', - title: pai.properties.module.description, + title: path([ 'properties', 'module', 'description' ], pai) || pai.name, }, pai.name), r(DebugText, { dgo, pai }), ]);