sunbal7 commited on
Commit
9f2ed7e
Β·
verified Β·
1 Parent(s): aee8230

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
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
  # ---------------------------------