lingyit1108 commited on
Commit
7a98d38
1 Parent(s): b580d80

corrected the streamlit query_params bug

Browse files
Files changed (1) hide show
  1. pages/2_Evaluations.py +1 -1
pages/2_Evaluations.py CHANGED
@@ -143,7 +143,7 @@ else:
143
  else:
144
  app = apps
145
 
146
- st.query_params["app"] = app
147
 
148
  options = st.multiselect("Filter Applications", apps, default=app)
149
 
 
143
  else:
144
  app = apps
145
 
146
+ st.experimental_set_query_params(app=app)
147
 
148
  options = st.multiselect("Filter Applications", apps, default=app)
149