This commit is contained in:
Michael Shamoon 2022-10-09 15:13:27 -07:00
parent 86b12debc5
commit 04da8f3925

View File

@ -15,8 +15,8 @@ export default function Component({ service }) {
return <Container error={t("widget.api_error")} />;
}
const wlanLabel = t("unifi.wlan") + " " + t("unifi.users")
const lanLabel = t("unifi.lan") + " " + t("unifi.users")
const wlanLabel = `${t("unifi.wlan")} ${t("unifi.users")}`
const lanLabel = `${t("unifi.lan")} ${t("unifi.users")}`
const defaultSite = statsData?.data?.find(s => s.name === "default");