Update dashboard.py
Browse files- dashboard.py +3 -2
dashboard.py
CHANGED
@@ -250,8 +250,9 @@ child_button_5 = pn.widgets.Button(name="Other", button_type="warning", icon="ch
|
|
250 |
# Layout: dendrogram-style using vertical + indent
|
251 |
tree_layout = pn.Column(
|
252 |
button5,
|
253 |
-
pn.Row(pn.Spacer(
|
254 |
-
pn.Column(child_button_1, child_button_2,child_button_3,child_button_4, child_button_5))
|
|
|
255 |
)
|
256 |
|
257 |
entRelsButton = pn.widgets.RadioButtonGroup(name='### Select', options=['Entity','Relation'], value = 'Entity' )
|
|
|
250 |
# Layout: dendrogram-style using vertical + indent
|
251 |
tree_layout = pn.Column(
|
252 |
button5,
|
253 |
+
pn.Row(pn.Spacer(), # indent
|
254 |
+
pn.Column(child_button_1, child_button_2,child_button_3,child_button_4, child_button_5)),
|
255 |
+
sizing_mode='stretch_width'
|
256 |
)
|
257 |
|
258 |
entRelsButton = pn.widgets.RadioButtonGroup(name='### Select', options=['Entity','Relation'], value = 'Entity' )
|