mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-01-22 20:18:30 +03:00
fix: fix wizard other camera i18n
This commit is contained in:
parent
d825e9719d
commit
9569009a0f
@ -417,7 +417,9 @@ export default function Step1NameCamera({
|
|||||||
<SelectContent>
|
<SelectContent>
|
||||||
{CAMERA_BRANDS.map((brand) => (
|
{CAMERA_BRANDS.map((brand) => (
|
||||||
<SelectItem key={brand.value} value={brand.value}>
|
<SelectItem key={brand.value} value={brand.value}>
|
||||||
{brand.label}
|
{brand.label.toLowerCase() === "other"
|
||||||
|
? t("label.other", { ns: "common" })
|
||||||
|
: brand.label}
|
||||||
</SelectItem>
|
</SelectItem>
|
||||||
))}
|
))}
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user