This commit is contained in:
parent
6b2304c853
commit
6598666db0
|
|
@ -350,7 +350,7 @@ const AudioComponents = () => {
|
|||
})
|
||||
}} disabled={!audioDeviceManager.ecordingItem} />
|
||||
</div>
|
||||
<div>
|
||||
{/* <div>
|
||||
<Checkbox onChange={async (e) => {
|
||||
setting.autoEcordingVolume = e.target.checked;
|
||||
storage.setItem('setting', JSON.stringify(setting))
|
||||
|
|
@ -359,7 +359,7 @@ const AudioComponents = () => {
|
|||
autoEcordingVolume: e.target.checked
|
||||
})
|
||||
}} checked={audioDeviceManager.autoEcordingVolume}>自动调整麦克风音量</Checkbox>
|
||||
</div>
|
||||
</div> */}
|
||||
</div>
|
||||
<div>
|
||||
<div className={styles.audioComponentsSelect}>
|
||||
|
|
@ -442,6 +442,7 @@ const RecordingComponents = () => {
|
|||
}, [])
|
||||
const handleCustomStorageChange = (e: any): void => {
|
||||
if (e.key === 'setting') {
|
||||
const setting = JSON.parse(storage.getItem('setting') as string)
|
||||
setFilePath(setting.recordingFilesPath)
|
||||
}
|
||||
};
|
||||
|
|
@ -514,6 +515,7 @@ const FileComponents = () => {
|
|||
}, [])
|
||||
const handleCustomStorageChange = (e: any): void => {
|
||||
if (e.key === 'setting') {
|
||||
const setting = JSON.parse(storage.getItem('setting') as string)
|
||||
setFilePath(setting.shareFilesPath)
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -879,8 +879,8 @@ const Meeting: React.FC = () => {
|
|||
return
|
||||
}
|
||||
if (enableCamera) {
|
||||
const enableMicrLenght = roomUserList.filter((item: any) => item.enableCamera).length
|
||||
if (enableMicrLenght >= 20) {
|
||||
const enableCameraLenght = roomUserList.filter((item: any) => item.enableCamera).length
|
||||
if (enableCameraLenght >= 20) {
|
||||
return message.error('房间内最多20个开启摄像头')
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue