Spaces:
Running
Running
Commit
·
f1ef836
1
Parent(s):
b2e5d57
fixed contained
Browse files
app.py
CHANGED
@@ -52,17 +52,16 @@ with st.form(key='columns_in_form', clear_on_submit = False):
|
|
52 |
max_results = st.number_input("Max papers", value=max_results_current)
|
53 |
max_results_current = max_results_current
|
54 |
with c3:
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
MedrXiv_check = st.checkbox('MedrXiv')
|
66 |
|
67 |
searchButton = st.form_submit_button(label = 'Search')
|
68 |
|
|
|
52 |
max_results = st.number_input("Max papers", value=max_results_current)
|
53 |
max_results_current = max_results_current
|
54 |
with c3:
|
55 |
+
st.markdown('Pre-print server')
|
56 |
+
checks = st.columns(4)
|
57 |
+
with checks[0]:
|
58 |
+
ArXiv_check = st.checkbox('ArXiv')
|
59 |
+
with checks[1]:
|
60 |
+
ChemArXiv_check = st.checkbox('ChemArXiv')
|
61 |
+
with checks[2]:
|
62 |
+
BioArXiv_check = st.checkbox('BioArXiv')
|
63 |
+
with checks[3]:
|
64 |
+
MedrXiv_check = st.checkbox('MedrXiv')
|
|
|
65 |
|
66 |
searchButton = st.form_submit_button(label = 'Search')
|
67 |
|