tidy for the previous commit

auto_join_3.3
Mészáros Mihály 2020-05-22 11:47:12 +02:00
parent 547e95b35c
commit 359bfac450
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ const MediaSettings = ({
{ audioDevices.map((audio, index) =>
{
return (
<MenuItem key={index} value={audio.deviceId}>{audio.label!=='' ? audio.label : index}</MenuItem>
<MenuItem key={index} value={audio.deviceId}>{audio.label==='' ? index+1 : audio.label }</MenuItem>
);
})}
</Select>