Skip to content

Commit

Permalink
fix: switch marker for endangered and pioneer tree type
Browse files Browse the repository at this point in the history
  • Loading branch information
friedjoff committed May 4, 2020
1 parent ff2e5bc commit b910eea
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 b910eea

Please sign in to comment.