EDIT Multiview - fix none in cam selector

Signed-off-by: Damian Krysta <damian@krysta.dev>
This commit is contained in:
Damian Krysta 2022-02-04 08:26:38 +01:00 committed by Scott Lamb
parent 41dfae336e
commit f8ff07d2ad
1 changed files with 1 additions and 1 deletions

View File

@ -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"