Mhassanen commited on
Commit
7165a9b
1 Parent(s): e86985e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -71,9 +71,9 @@ if option == "Text":
71
  full_text_input = st.text_area("Enter Full Text:")
72
  affiliations_input = st.text_area("Enter Affiliations:")
73
  keywords_input = st.text_area("Enter Keywords:")
74
- options=["Select WoS Category", "Nursing", "Physics", "Maths", "Chemical", "Nuclear", "Engineering" ,"Other"]
75
 
76
- selected_category = st.selectbox("Select WoS categories:", options, index= 0)
77
  if selected_category == "Other":
78
  custom_category = st.text_input("Enter custom category:")
79
  selected_category = custom_category if custom_category else "Other"
 
71
  full_text_input = st.text_area("Enter Full Text:")
72
  affiliations_input = st.text_area("Enter Affiliations:")
73
  keywords_input = st.text_area("Enter Keywords:")
74
+ options=["Nursing", "Physics", "Maths", "Chemical", "Nuclear", "Engineering" ,"Other"]
75
 
76
+ selected_category = st.selectbox("Select WoS categories:", options, index= None)
77
  if selected_category == "Other":
78
  custom_category = st.text_input("Enter custom category:")
79
  selected_category = custom_category if custom_category else "Other"