Skip to content

Commit

Permalink
fix(evidence): fix layout
Browse files Browse the repository at this point in the history
Correctly using relative pointer to logo now
  • Loading branch information
gwenwindflower committed Jun 23, 2024
1 parent cb055be commit 74be87d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Empty file removed data-tests/.gitkeep
Empty file.
4 changes: 2 additions & 2 deletions models/marts/sf_trees.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion reports/pages/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
title="🌲 dbtree 🌳"
githubRepo="https://github.com/gwenwindflower/dbtree"
builtWithEvidence={true}
logo="./logo.png"
logo="/logo.png"
>
<slot slot="content" />
</EvidenceDefaultLayout>

0 comments on commit 74be87d

Please sign in to comment.