feature(CountriesTable): default nullish labels to 'Unknown'

This commit is contained in:
Alexander Klein 2021-02-19 09:56:40 +01:00
parent fb85d576a2
commit 14e1366fe4

View File

@ -10,7 +10,7 @@ export default function CountriesTable({ websiteId, onDataLoad, ...props }) {
const countryNames = useCountryNames(locale);
function renderLabel({ x }) {
return <div className={locale}>{countryNames[x]}</div>;
return <div className={locale}>{countryNames[x] ?? 'Unknown'}</div>;
}
return (