From 0b1ad61b20ad07f71cc3b5759f3b2694bc22145f Mon Sep 17 00:00:00 2001 From: Markus Grigull Date: Fri, 4 May 2018 11:05:55 +0200 Subject: [PATCH] Fix plot table widget --- src/components/widget-plot-table.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/widget-plot-table.js b/src/components/widget-plot-table.js index 59d729b..02d11be 100644 --- a/src/components/widget-plot-table.js +++ b/src/components/widget-plot-table.js @@ -96,6 +96,10 @@ class WidgetPlotTable extends Component { let checkBoxes = []; // Data passed to plot + if (this.props.simulationModel == null) { + return
; + } + const simulator = this.props.simulationModel.simulator; let simulatorData = [];