fix(xod-client): remove isRequired from TooltipHOC property to avoid React Warnings on dragging Node

This commit is contained in:
Kirill Shumilov
2018-03-01 14:39:44 +03:00
parent ec9197a385
commit f3c74789be

View File

@@ -77,7 +77,7 @@ class TooltipHOC extends React.Component {
}
TooltipHOC.propTypes = {
content: PropTypes.node.isRequired,
content: PropTypes.node,
render: PropTypes.func.isRequired,
};