Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -158,15 +158,15 @@ with st.sidebar:
|
|
158 |
# Navigation buttons (only relevant if we have papers in session)
|
159 |
if 'papers' in st.session_state and st.session_state.papers:
|
160 |
st.header("π Navigation")
|
161 |
-
if st.button("Show Articles"):
|
162 |
st.session_state.active_section = "articles"
|
163 |
-
if st.button("Literature Review & Summary"):
|
164 |
st.session_state.active_section = "review"
|
165 |
-
if st.button("Concept & Visual Graph"):
|
166 |
st.session_state.active_section = "graph"
|
167 |
-
if st.button("Formatted Citations"):
|
168 |
st.session_state.active_section = "citations"
|
169 |
-
if st.button("Research Proposal"):
|
170 |
st.session_state.active_section = "proposal"
|
171 |
|
172 |
# ---------------------------------
|
|
|
158 |
# Navigation buttons (only relevant if we have papers in session)
|
159 |
if 'papers' in st.session_state and st.session_state.papers:
|
160 |
st.header("π Navigation")
|
161 |
+
if st.button("π Show Articles"):
|
162 |
st.session_state.active_section = "articles"
|
163 |
+
if st.button("π Literature Review & Summary"):
|
164 |
st.session_state.active_section = "review"
|
165 |
+
if st.button("π Concept & Visual Graph"):
|
166 |
st.session_state.active_section = "graph"
|
167 |
+
if st.button("π Formatted Citations"):
|
168 |
st.session_state.active_section = "citations"
|
169 |
+
if st.button("π‘ Research Proposal"):
|
170 |
st.session_state.active_section = "proposal"
|
171 |
|
172 |
# ---------------------------------
|