Skip to content

Commit

Permalink
fix: switch symbols for endangered and pinoeer tree types
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed Jul 6, 2020
1 parent 5fa997c commit 3cc85eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TreeTypeList.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function TreeTypeList({ className, codes }) {
{treeInfo[i18n.language]}
{(treeInfo.endangered || treeInfo.pioneer) && (
<sup>
{(treeInfo.endangered && '+') || (treeInfo.pioneer && '*')}
{(treeInfo.endangered && '') || (treeInfo.pioneer && '*')}
</sup>
)}{' '}
</>
Expand Down

0 comments on commit 3cc85eb

Please sign in to comment.