Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLAG-1106] Priority 6: Add Plantations as a filter to the 'Forest Type' dropdown of tree cover loss in [area] widget #4923

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions components/widgets/forest-change/tree-loss-global/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ export default {
title: 'Global Annual Tree cover loss',
alerts: [
{
text:
'The methods behind this data have changed over time. Be cautious comparing old and new data, especially before/after 2015. [Read more here](https://www.globalforestwatch.org/blog/data-and-research/tree-cover-loss-satellite-data-trend-analysis/).',
text: 'The methods behind this data have changed over time. Be cautious comparing old and new data, especially before/after 2015. [Read more here](https://www.globalforestwatch.org/blog/data-and-research/tree-cover-loss-satellite-data-trend-analysis/).',
visible: ['global', 'country', 'geostore', 'aoi', 'wdpa', 'use'],
},
],
Expand All @@ -25,7 +24,7 @@ export default {
{
key: 'forestType',
label: 'Forest Type',
whitelist: ['ifl', 'primary_forest'],
whitelist: ['ifl', 'primary_forest', 'plantations'],
type: 'select',
placeholder: 'All tree cover',
clearable: true,
Expand Down
2 changes: 1 addition & 1 deletion components/widgets/forest-change/tree-loss/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default {
{
key: 'forestType',
label: 'Forest Type',
whitelist: ['ifl', 'mangroves_2016'],
whitelist: ['ifl', 'mangroves_2016', 'plantations'],
type: 'select',
placeholder: 'All tree cover',
clearable: true,
Expand Down
Loading