Ben Burtenshaw commited on
Commit
3683e65
1 Parent(s): f0c3014

fix defaults being replaced

Browse files
pages/2_👩🏼‍🔬 Describe Domain.py CHANGED
@@ -100,7 +100,7 @@ with tab_domain_perspectives:
100
 
101
  perspectives = st.session_state.get(
102
  "perspectives",
103
- ["Family Farmer"],
104
  )
105
  perspectives_container = st.container()
106
 
@@ -131,7 +131,7 @@ with tab_domain_topics:
131
  )
132
  topics = st.session_state.get(
133
  "topics",
134
- ["Soil Health", "Crop Rotation", "Livestock Management"],
135
  )
136
  topics_container = st.container()
137
  topics = [
 
100
 
101
  perspectives = st.session_state.get(
102
  "perspectives",
103
+ [DEFAULT_PERSPECTIVES[0]],
104
  )
105
  perspectives_container = st.container()
106
 
 
131
  )
132
  topics = st.session_state.get(
133
  "topics",
134
+ [DEFAULT_TOPICS[0]],
135
  )
136
  topics_container = st.container()
137
  topics = [