fix(device-picker) Close the picker when the other one opens (#13091)

This commit is contained in:
Robert Pintilii
2023-03-21 14:46:53 +02:00
committed by GitHub
parent a7fa33286d
commit aeeca7c343
2 changed files with 2 additions and 0 deletions

View File

@@ -67,6 +67,7 @@ function AudioSettingsPopup({
return (
<div className = 'audio-preview'>
<Popover
allowClick = { true }
content = { <AudioSettingsContent
currentMicDeviceId = { currentMicDeviceId }
currentOutputDeviceId = { currentOutputDeviceId }

View File

@@ -57,6 +57,7 @@ function VideoSettingsPopup({
return (
<div className = 'video-preview'>
<Popover
allowClick = { true }
content = { <VideoSettingsContent
currentCameraDeviceId = { currentCameraDeviceId }
setVideoInputDevice = { setVideoInputDevice }