Spaces:
Running
Running
remove clear button
Browse files
app.py
CHANGED
@@ -425,13 +425,14 @@ col1.title("Candidate Search")
|
|
425 |
col2.image("https://www.workgenius.com/wp-content/uploads/2023/03/WorkGenius_navy-1.svg")
|
426 |
|
427 |
st.write("Please upload the job description for which you would like candidates to be proposed.")
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
|
|
435 |
|
436 |
if st.session_state["job"]:
|
437 |
if not st.session_state["job_string"]:
|
|
|
425 |
col2.image("https://www.workgenius.com/wp-content/uploads/2023/03/WorkGenius_navy-1.svg")
|
426 |
|
427 |
st.write("Please upload the job description for which you would like candidates to be proposed.")
|
428 |
+
uploaded_file_jobdescription = st.file_uploader("Upload the job description:", type=["pdf"], key="job")
|
429 |
+
# col_file, col_clear = st.columns([6,1])
|
430 |
+
|
431 |
+
# with col_file:
|
432 |
+
# uploaded_file_jobdescription = st.file_uploader("Upload the job description:", type=["pdf"], key="job")
|
433 |
+
# with col_clear:
|
434 |
+
# if st.button("Clear", use_container_width=True):
|
435 |
+
# streamlit_js_eval(js_expressions="parent.window.location.reload()")
|
436 |
|
437 |
if st.session_state["job"]:
|
438 |
if not st.session_state["job_string"]:
|