I am trying to add a new country map to Apache Superset.
I followed the instructions on "You need to add a new Country ?".
However, step 7 is not working for me. Even if I add the country in the "select country" component, it still does not appear on the scrolling list in the UI.
Thanks for your help. This is step 7:
Add your country in component ‘select_country’ Example:
And this is its code:
select_country: {
type: 'SelectControl',
label: 'Country Name Type',
default: 'France',
choices: [
'Belgium',
'Brazil',
'China',
'Egypt',
'France',
'Germany',
'Italy',
'Morocco',
'Netherlands',
'Russia',
'Singapore',
'Spain',
'Uk',
'Usa',
].map(s => [s, s]),
description: 'The name of country that Superset should display',
},