Fix acessing a property of undefined (Fix #1)

This commit is contained in:
futpib 2018-12-16 04:07:24 +03:00
parent 34c404cf6c
commit a405039c9b

View File

@ -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 }),
]);