Chris4K commited on
Commit
593ce6e
·
verified ·
1 Parent(s): 23104a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -25,7 +25,11 @@ def on_close():
25
 
26
  def open_modal():
27
  st.modal("User Guide", "Hello world")
 
 
 
28
 
 
29
 
30
  #######
31
 
@@ -33,7 +37,7 @@ import pandas as pd
33
  from io import StringIO
34
  with st.sidebar:
35
 
36
- st.button("User Description", lambda: st.modal("User Guide", app_user_desc(), on_close))
37
 
38
  st.header("Set Tools and Option. ")
39
 
 
25
 
26
  def open_modal():
27
  st.modal("User Guide", "Hello world")
28
+ # Define a callback function that will be called when the button is clicked
29
+ #def open_modal():
30
+ # st.modal("User Guide", app_user_desc())
31
 
32
+ # Create a button that opens the modal
33
 
34
  #######
35
 
 
37
  from io import StringIO
38
  with st.sidebar:
39
 
40
+ st.button("User Description", open_modal)
41
 
42
  st.header("Set Tools and Option. ")
43