EasySci commited on
Commit
3291391
Β·
1 Parent(s): 2096def

Update app2.py

Browse files
Files changed (1) hide show
  1. app2.py +2 -2
app2.py CHANGED
@@ -27,7 +27,7 @@ main_body = [pn.pane.LaTeX("Please select some tags!", styles={'font-size': '20p
27
  # Create buttons for the toggleable sidebar
28
  button1 = pn.widgets.Button(name="🏠 Home", button_type='primary', button_style='outline', width=140)
29
  button2 = pn.widgets.Button(name='πŸ“ My papers', button_type='primary', button_style='outline', width=140)
30
- button3 = pn.widgets.Toggle(name='βš™οΈ Settings', button_type='default', button_style='outline', width=140, value=True)
31
 
32
  # Custom RadioButtonGroup widget
33
  select = pn.widgets.RadioButtonGroup(value="Scientic", options=["General", "Scientic"], name='String', align='center', button_type='default')
@@ -47,7 +47,7 @@ buttons = pn.Column(
47
  pn.Column(
48
  select,
49
  select2,
50
- visible=False,
51
  sizing_mode='stretch_width',
52
  ),
53
  css_classes=['hidden']
 
27
  # Create buttons for the toggleable sidebar
28
  button1 = pn.widgets.Button(name="🏠 Home", button_type='primary', button_style='outline', width=140)
29
  button2 = pn.widgets.Button(name='πŸ“ My papers', button_type='primary', button_style='outline', width=140)
30
+ button3 = pn.widgets.Toggle(name='βš™οΈ Settings', button_type='default', button_style='outline', width=140, value=False)
31
 
32
  # Custom RadioButtonGroup widget
33
  select = pn.widgets.RadioButtonGroup(value="Scientic", options=["General", "Scientic"], name='String', align='center', button_type='default')
 
47
  pn.Column(
48
  select,
49
  select2,
50
+ visible=True,
51
  sizing_mode='stretch_width',
52
  ),
53
  css_classes=['hidden']