diff --git a/data-tests/.gitkeep b/data-tests/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/models/marts/sf_trees.sql b/models/marts/sf_trees.sql index 9ff644c..6300cf2 100644 --- a/models/marts/sf_trees.sql +++ b/models/marts/sf_trees.sql @@ -27,8 +27,8 @@ clean_up_species as ( longitude, planted_at_date, case - when plant_type = 'Tree' or plant_type = 'tree' then 'tree' - when plant_type = 'Landscaping' then 'landscaping' + when plant_type ilike 'tree' then 'tree' + when plant_type ilike 'landscaping' then 'landscaping' else 'unknown' end as plant_type, split_part(species, ':: ', 1) as species_scientific_name, diff --git a/reports/pages/+layout.svelte b/reports/pages/+layout.svelte index 9bef202..22d3b75 100644 --- a/reports/pages/+layout.svelte +++ b/reports/pages/+layout.svelte @@ -10,7 +10,7 @@ title="🌲 dbtree 🌳" githubRepo="https://github.com/gwenwindflower/dbtree" builtWithEvidence={true} - logo="./logo.png" + logo="/logo.png" >