mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
Show a dash when geoip data is not available in the admin. Closes https://github.com/owncast/owncast/issues/427
This commit is contained in:
parent
9908896bfd
commit
d86ee96a0d
@ -96,7 +96,7 @@ export default function ViewersOverTime() {
|
||||
title: "Location",
|
||||
dataIndex: "geo",
|
||||
key: "geo",
|
||||
render: (geo) => geo && `${geo.regionName}, ${geo.countryCode}`,
|
||||
render: (geo) => geo ? `${geo.regionName}, ${geo.countryCode}` : '-',
|
||||
},
|
||||
];
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user