Skip to content

Commit

Permalink
Fixed selection issue
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Apr 29, 2020
1 parent 31acd9a commit dc96dad
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion holoviews/element/selection.py
Expand Up @@ -369,7 +369,8 @@ def _get_selection_expr_for_stream_value(self, **kwargs):
bbox[self.kdims[0].name] = cats
index_cols = kwargs.get('index_cols')
if index_cols:
selection_expr = self._get_index_expr(index_cols, bbox)
selection = self.dataset.clone(datatype=['dataframe', 'dictionary']).select(**bbox)
selection_expr = self._get_index_expr(index_cols, selection)
region_element = None
else:
if isinstance(cats, list) and xdim in self.kdims[:1]:
Expand Down

0 comments on commit dc96dad

Please sign in to comment.