Spaces:
Sleeping
Sleeping
Commit
·
9abc2e6
1
Parent(s):
b68774d
Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ def convert_df(df):
|
|
20 |
# If not, then initialize it
|
21 |
if 'visibility' not in st.session_state:
|
22 |
st.session_state['visibility'] = 'visible'
|
23 |
-
st.session_state.disabled =
|
24 |
|
25 |
original_title = '<p style="font-family:Trebuchet MS; color:#FD7456; font-size: 25px; font-weight:bold; text-align:center">ASCARIS</p>'
|
26 |
st.markdown(original_title, unsafe_allow_html=True)
|
@@ -38,7 +38,7 @@ with st.form('mform', clear_on_submit=False):
|
|
38 |
impute = st.selectbox('Imputation',[True, False])
|
39 |
input_data = st.text_input('Enter SAV data points (Format Provided Below)', "P13637-T-613-M, Q9Y4W6-N-432-T",label_visibility=st.session_state.visibility,
|
40 |
disabled=st.session_state.disabled,
|
41 |
-
placeholder=
|
42 |
)
|
43 |
|
44 |
|
|
|
20 |
# If not, then initialize it
|
21 |
if 'visibility' not in st.session_state:
|
22 |
st.session_state['visibility'] = 'visible'
|
23 |
+
st.session_state.disabled = False
|
24 |
|
25 |
original_title = '<p style="font-family:Trebuchet MS; color:#FD7456; font-size: 25px; font-weight:bold; text-align:center">ASCARIS</p>'
|
26 |
st.markdown(original_title, unsafe_allow_html=True)
|
|
|
38 |
impute = st.selectbox('Imputation',[True, False])
|
39 |
input_data = st.text_input('Enter SAV data points (Format Provided Below)', "P13637-T-613-M, Q9Y4W6-N-432-T",label_visibility=st.session_state.visibility,
|
40 |
disabled=st.session_state.disabled,
|
41 |
+
placeholder='hidden',
|
42 |
)
|
43 |
|
44 |
|