Skip to content

Commit

Permalink
Update SettingsDialog.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaboleken committed Dec 18, 2024
1 parent 2fdeb90 commit 9499b59
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion react/src/Components/Footer/Components/SettingsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,15 @@ export default function SettingsDialog(props) {
</Grid>
<Grid container alignItems={'center'} spacing={2}>
<Grid item xs={10}>
<Select autoFocus={props?.selectFocus === 'audio'} variant="outlined" fullWidth value={props?.selectedMicrophone} onChange={e => switchAudioMode(e.target.value)} sx={{ color: '#fff' }}>
<Select
autoFocus={props?.selectFocus === 'audio'}
variant="outlined"
fullWidth
value={props?.selectedMicrophone}
onChange={e => switchAudioMode(e.target.value)}
sx={{ color: '#fff' }}
id="setting-dialog-mic-select"
>
{props?.devices && props?.devices?.length > 0 && props?.devices
.filter(device => device.kind === 'audioinput')
.map(device => (
Expand Down

0 comments on commit 9499b59

Please sign in to comment.