mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-01-24 13:13:16 -05:00
EDIT Multiview - fix none in cam selector
Signed-off-by: Damian Krysta <damian@krysta.dev>
This commit is contained in:
parent
41dfae336e
commit
f8ff07d2ad
@ -223,7 +223,7 @@ const Monoview = (props: MonoviewProps) => {
|
||||
|
||||
const chooser = (
|
||||
<Select
|
||||
value={props.cameraIndex == null ? null : props.cameraIndex}
|
||||
value={props.cameraIndex == null ? undefined : props.cameraIndex}
|
||||
onChange={handleChange}
|
||||
displayEmpty
|
||||
size="small"
|
||||
|
Loading…
x
Reference in New Issue
Block a user