Skip to content

Commit

Permalink
FIxed lookup of dimension index in HoloViews pane (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr authored Sep 23, 2019
1 parent 65df746 commit c0f5499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/pane/holoviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def _update_plot(self, plot, pane):
key = tuple(w.value for w in widgets)
if plot.dynamic:
widget_dims = [w.name for w in widgets]
key = [key[widget_dims.index(kdim.name)] if kdim.name in widget_dims else None
key = [key[widget_dims.index(kdim)] if kdim in widget_dims else None
for kdim in plot.dimensions]
key = wrap_tuple_streams(tuple(key), plot.dimensions, plot.streams)

Expand Down

0 comments on commit c0f5499

Please sign in to comment.