Fix acessing a property of undefined (Fix #1)
This commit is contained in:
parent
34c404cf6c
commit
a405039c9b
|
@ -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 }),
|
||||
]);
|
||||
|
|
Loading…
Reference in New Issue
Block a user