Skip to content

Commit

Permalink
fix displaying widgets controlled dmap in the explorer (#1181)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Oct 16, 2023
1 parent da26087 commit 33d1782
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hvplot/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,9 @@ def __init__(self, df, **params):
self._alert,
pn.Row(
self._control_tabs,
pn.Tabs(('Plot', self._hv_pane), ('Code', self._code_pane)),
# Using .layout on the HoloViews pane to display the widgets
# https://github.com/holoviz/panel/issues/5628#issuecomment-1763443895
pn.Tabs(('Plot', self._hv_pane.layout), ('Code', self._code_pane)),
sizing_mode='stretch_width',
),
self._statusbar,
Expand Down

0 comments on commit 33d1782

Please sign in to comment.