mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-24 13:13:16 -05:00
FIX build - add OR empty string
Signed-off-by: Damian Krysta <damian@krysta.dev>
This commit is contained in:
parent
4d3d72c7b5
commit
e90d804f1a
@ -156,7 +156,7 @@ const Multiview = (props: MultiviewProps) => {
|
||||
const [selected, updateSelected] = useReducer(
|
||||
selectedReducer,
|
||||
searchParams.has("cams")
|
||||
? JSON.parse(searchParams.get("cams"))
|
||||
? JSON.parse(searchParams.get("cams") || "")
|
||||
: Array(MAX_CAMERAS).fill(null)
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user