mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-02-03 18:06:02 -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 = (
|
const chooser = (
|
||||||
<Select
|
<Select
|
||||||
value={props.cameraIndex == null ? null : props.cameraIndex}
|
value={props.cameraIndex == null ? undefined : props.cameraIndex}
|
||||||
onChange={handleChange}
|
onChange={handleChange}
|
||||||
displayEmpty
|
displayEmpty
|
||||||
size="small"
|
size="small"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user