Skip to content

Commit

Permalink
Change CheckList syntax from values to value (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Kallekleiv authored Aug 6, 2019
1 parent 05f190e commit 9416c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webviz_subsurface/containers/_summary_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
])
Expand All @@ -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,
Expand Down

0 comments on commit 9416c5b

Please sign in to comment.