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

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
- [DEFAULT_PERSPECTIVES[0]],
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
- [DEFAULT_TOPICS[0]],
135
  )
136
  topics_container = st.container()
137
  topics = [
 
100
 
101
  perspectives = st.session_state.get(
102
  "perspectives",
103
+ ["Family Farmer"],
104
  )
105
  perspectives_container = st.container()
106
 
 
131
  )
132
  topics = st.session_state.get(
133
  "topics",
134
+ ["Soil Health", "Crop Rotation", "Livestock Management"],
135
  )
136
  topics_container = st.container()
137
  topics = [
pages/3_🌱 Generate Dataset.py CHANGED
@@ -182,7 +182,7 @@ if all(
182
  hub_username=hub_username,
183
  hub_token=hub_token,
184
  project_name=project_name,
185
- )
186
 
187
  st.success(
188
  f"Pipeline configuration pushed to the dataset repo {hub_username}/{project_name} on the Hub."
 
182
  hub_username=hub_username,
183
  hub_token=hub_token,
184
  project_name=project_name,
185
+ )
186
 
187
  st.success(
188
  f"Pipeline configuration pushed to the dataset repo {hub_username}/{project_name} on the Hub."