victormiller commited on
Commit
d5c9701
1 Parent(s): adcd5e6

Update curated.py

Browse files
Files changed (1) hide show
  1. curated.py +13 -9
curated.py CHANGED
@@ -1109,15 +1109,19 @@ def curated(request):
1109
 
1110
 
1111
  return Div(
1112
- overview,
1113
- curated_sources_intro,
1114
- plotly2fasthtml(treemap_chart),
1115
- data_preprocessing_div,
1116
- filtering_process,
1117
- #data_preparation_div,
1118
- #H2("Local Deduplication"), are these numbers even right?
1119
- #local_dedup_text,
1120
- #table_div_data_pipe,
 
 
 
 
1121
  id="inner-text",
1122
  )
1123
 
 
1109
 
1110
 
1111
  return Div(
1112
+ Section(
1113
+ overview,
1114
+ ),
1115
+ Section(
1116
+ curated_sources_intro,
1117
+ plotly2fasthtml(treemap_chart),
1118
+ ),
1119
+ Section(
1120
+ data_preprocessing_div,
1121
+ ),
1122
+ Section(
1123
+ filtering_process,
1124
+ ),
1125
  id="inner-text",
1126
  )
1127