mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-19 15:53:39 +01:00
feature(CountriesTable): default nullish labels to 'Unknown'
This commit is contained in:
parent
fb85d576a2
commit
14e1366fe4
@ -10,7 +10,7 @@ export default function CountriesTable({ websiteId, onDataLoad, ...props }) {
|
|||||||
const countryNames = useCountryNames(locale);
|
const countryNames = useCountryNames(locale);
|
||||||
|
|
||||||
function renderLabel({ x }) {
|
function renderLabel({ x }) {
|
||||||
return <div className={locale}>{countryNames[x]}</div>;
|
return <div className={locale}>{countryNames[x] ?? 'Unknown'}</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
Loading…
Reference in New Issue
Block a user