summaryrefslogtreecommitdiffstats
path: root/webapp/plugins/pluggable/pluggable.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/plugins/pluggable/pluggable.jsx')
-rw-r--r--webapp/plugins/pluggable/pluggable.jsx6
1 files changed, 4 insertions, 2 deletions
diff --git a/webapp/plugins/pluggable/pluggable.jsx b/webapp/plugins/pluggable/pluggable.jsx
index 566e024e5..c81d8df5e 100644
--- a/webapp/plugins/pluggable/pluggable.jsx
+++ b/webapp/plugins/pluggable/pluggable.jsx
@@ -33,6 +33,8 @@ export default class Pluggable extends React.PureComponent {
return null;
}
+ const childName = child.getComponentName();
+
// Include any props passed to this component or to the child component
let props = {...this.props};
Reflect.deleteProperty(props, 'children');
@@ -40,8 +42,8 @@ export default class Pluggable extends React.PureComponent {
props = {...props, ...this.props.children.props};
// Override the default component with any registered plugin's component
- if (components.hasOwnProperty(child.name)) {
- const PluginComponent = components[child.name];
+ if (components.hasOwnProperty(childName)) {
+ const PluginComponent = components[childName];
return (
<PluginComponent
{...props}