diff --git a/src/browser/modules/Stream/CypherFrame/PlanView.jsx b/src/browser/modules/Stream/CypherFrame/PlanView.jsx index 153d6900cfa..8ca138103c1 100644 --- a/src/browser/modules/Stream/CypherFrame/PlanView.jsx +++ b/src/browser/modules/Stream/CypherFrame/PlanView.jsx @@ -65,7 +65,7 @@ export class PlanView extends Component { planInit (el) { if (el != null && !this.plan) { const NeoConstructor = neo.queryPlan - this.plan = NeoConstructor(el) + this.plan = new NeoConstructor(el) this.plan.display(this.state.extractedPlan) } }