fixes #41
This commit is contained in:
parent
605fddc3dc
commit
321e4ccece
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ function MicControl() {
|
|||
<option value={"None"} disabled label="Choose a microphone"></option>
|
||||
{
|
||||
micList.map(function(e,i) {
|
||||
return <option value={e.deviceId} key={i}>{e.label}</option>;
|
||||
return <option value={e.deviceId} key={i}>{e.label !== "" ? e.label : e.deviceId}</option>;
|
||||
})
|
||||
}
|
||||
</select>
|
||||
|
|
Loading…
Reference in a new issue