Skip to content

Commit

Permalink
Merge pull request #101 from monarch-initiative/99-attributeerror-mod…
Browse files Browse the repository at this point in the history
…ule-streamlit-has-no-attribute-experimental_rerun

Fix #99
  • Loading branch information
caufieldjh authored Oct 23, 2024
2 parents a6c5581 + cc45cd4 commit c14b3c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/curategpt/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,13 +409,13 @@ def _flat(obj: dict, limit=40) -> dict:
autoadd_page_state.selected = obj
st.success("Curating!")
state.page = CURATE
st.experimental_rerun()
st.rerun()
if st.button(f"Find evidence {i+1}"):
autoadd_page_state = state.get_page_state(CITESEEK)
autoadd_page_state.selected = obj
st.success("OK!")
state.page = CITESEEK
st.experimental_rerun()
st.rerun()


elif option == CLUSTER_SEARCH:
Expand Down

0 comments on commit c14b3c1

Please sign in to comment.