diff --git a/webviz_subsurface/containers/_summary_stats.py b/webviz_subsurface/containers/_summary_stats.py index 4e2104492..20cddeaf4 100644 --- a/webviz_subsurface/containers/_summary_stats.py +++ b/webviz_subsurface/containers/_summary_stats.py @@ -89,7 +89,7 @@ def layout(self): dcc.Checklist( id=self.show_history_uncertainty_id, options=[{'label': 'Show history', 'value': 'SHOW_H'}], - values=[], + value=[], ), html.Div(id=self.chart_id) ]) @@ -98,7 +98,7 @@ def set_callbacks(self, app): @app.callback(Output(self.chart_id, 'children'), [Input(self.dropwdown_vector_id, 'value'), Input(self.radio_plot_type_id, 'value'), - Input(self.show_history_uncertainty_id, 'values')]) + Input(self.show_history_uncertainty_id, 'value')]) def update_plot( vector, summary_plot_type,