Skip to content

Commit 57158b4

Browse files
committed
more feedback
1 parent 39fa14f commit 57158b4

File tree

18 files changed

+19
-4
lines changed

18 files changed

+19
-4
lines changed

components/widgets/climate/carbon-flux/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export default {
4343
type: 'select',
4444
placeholder: 'All tree cover',
4545
clearable: true,
46+
blacklist: ['natural_forests_2020'],
4647
},
4748
{
4849
key: 'landCategory',

components/widgets/climate/emissions-deforestation/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export default {
4545
type: 'select',
4646
placeholder: 'All tree cover',
4747
clearable: true,
48+
blacklist: ['natural_forests_2020'],
4849
},
4950
{
5051
key: 'landCategory',

components/widgets/fires/burned-area-cumulative/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ const defaultConfig = {
3636
type: 'select',
3737
placeholder: 'All land cover',
3838
clearable: true,
39+
blacklist: ['natural_forests_2020'],
3940
},
4041
{
4142
key: 'landCategory',

components/widgets/fires/burned-area-ranked/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const defaultConfig = {
3333
type: 'select',
3434
placeholder: 'All land cover',
3535
clearable: true,
36+
blacklist: ['natural_forests_2020'],
3637
},
3738
{
3839
key: 'landCategory',

components/widgets/fires/burned-area/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export default {
3030
type: 'select',
3131
placeholder: 'All land cover',
3232
clearable: true,
33+
blacklist: ['natural_forests_2020'],
3334
},
3435
{
3536
key: 'landCategory',

components/widgets/fires/fires-alerts-cumulative/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export default {
2525
type: 'select',
2626
placeholder: 'All land cover',
2727
clearable: true,
28+
blacklist: ['natural_forests_2020'],
2829
},
2930
{
3031
key: 'landCategory',

components/widgets/fires/fires-alerts-historical-weekly/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default {
2828
type: 'select',
2929
placeholder: 'All land cover',
3030
clearable: true,
31+
blacklist: ['natural_forests_2020'],
3132
},
3233
{
3334
key: 'landCategory',

components/widgets/fires/fires-alerts-historical/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ export default {
2828
type: 'select',
2929
placeholder: 'All land cover',
3030
clearable: true,
31+
blacklist: ['natural_forests_2020'],
3132
},
3233
{
3334
key: 'landCategory',

components/widgets/fires/fires-alerts/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const defaultConfig = {
3838
type: 'select',
3939
placeholder: 'All land cover',
4040
clearable: true,
41+
blacklist: ['natural_forests_2020'],
4142
},
4243
{
4344
key: 'landCategory',

components/widgets/fires/fires-ranked/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export default {
2424
type: 'select',
2525
placeholder: 'All land cover',
2626
clearable: true,
27+
blacklist: ['natural_forests_2020'],
2728
},
2829
{
2930
key: 'landCategory',

components/widgets/fires/fires-within/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ export default {
3030
placeholder: 'All land cover',
3131
clearable: true,
3232
border: false,
33+
blacklist: ['natural_forests_2020'],
3334
},
3435
{
3536
key: 'landCategory',

components/widgets/fires/tree-loss-fires-annual/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default {
4545
type: 'select',
4646
placeholder: 'All tree cover',
4747
clearable: true,
48-
blacklist: ['mangroves_2016'],
48+
blacklist: ['mangroves_2016', 'natural_forests_2020'],
4949
},
5050
{
5151
key: 'landCategory',

components/widgets/fires/tree-loss-fires-proportion/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default {
4444
type: 'select',
4545
placeholder: 'All tree cover',
4646
clearable: true,
47-
blacklist: ['mangroves_2016'],
47+
blacklist: ['mangroves_2016', 'natural_forests_2020'],
4848
},
4949
{
5050
key: 'landCategory',

components/widgets/forest-change/glad-alerts-simple/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ export default {
6767
type: 'select',
6868
placeholder: 'All tree cover',
6969
clearable: true,
70+
blacklist: ['natural_forests_2020'],
7071
},
7172
{
7273
key: 'landCategory',

components/widgets/forest-change/glad-alerts/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export default {
9595
type: 'select',
9696
placeholder: 'All tree cover',
9797
clearable: true,
98+
blacklist: ['natural_forests_2020'],
9899
},
99100
{
100101
key: 'landCategory',

components/widgets/forest-change/glad-ranked/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export default {
3333
type: 'select',
3434
placeholder: 'All tree cover',
3535
clearable: true,
36+
blacklist: ['natural_forests_2020'],
3637
},
3738
{
3839
key: 'landCategory',

components/widgets/land-cover/ranked-forest-types/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export default {
3535
type: 'select',
3636
placeholder: 'All land cover',
3737
clearable: true,
38+
blacklist: ['natural_forests_2020'],
3839
},
3940
{
4041
key: 'decile',

components/widgets/land-cover/tree-cover-located/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ export default {
2727
alerts: [
2828
{
2929
id: 'tree-cover-located-alert-1',
30-
text:
31-
'Datasets available here (Tree Cover 2000/ 2010 and Tropical Tree Cover 2020) use different methodologies to measure tree cover. Read [our blog](https://www.globalforestwatch.org/blog/data-and-research/tree-cover-data-comparison/) for more information.',
30+
text: 'Datasets available here (Tree Cover 2000/ 2010 and Tropical Tree Cover 2020) use different methodologies to measure tree cover. Read [our blog](https://www.globalforestwatch.org/blog/data-and-research/tree-cover-data-comparison/) for more information.',
3231
visible: [
3332
'global',
3433
'country',
@@ -152,6 +151,7 @@ export default {
152151
type: 'select',
153152
placeholder: 'All tree cover',
154153
clearable: true,
154+
blacklist: ['natural_forests_2020'],
155155
},
156156
{
157157
key: 'landCategory',

0 commit comments

Comments
 (0)