Skip to content

Commit

Permalink
feat: do not split bubbled up props
Browse files Browse the repository at this point in the history
  • Loading branch information
lubojr committed Oct 27, 2023
1 parent 4fdf95b commit f8ce1fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions generators/generate_indicators.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,13 +302,13 @@ def add_to_catalog(collection, catalog, endpoint, data):
if "Locations" in data:
link.extra_fields["locations"] = True
if "Tags" in data:
link.extra_fields["tags"] = ",".join(data["Tags"])
link.extra_fields["tags"] = data["Tags"]
if "Satellite" in data:
link.extra_fields["satellite"] = ",".join(data["Satellite"])
link.extra_fields["satellite"] = data["Satellite"]
if "Sensor" in data:
link.extra_fields["sensor"] = ",".join(data["Sensor"])
link.extra_fields["sensor"] = data["Sensor"]
if "Agency" in data:
link.extra_fields["agency"] = ",".join(data["Agency"])
link.extra_fields["agency"] = data["Agency"]
if "yAxis" in data:
link.extra_fields["yAxis"] = data["yAxis"]
return link
Expand Down

0 comments on commit f8ce1fe

Please sign in to comment.