From 359bfac45005f781d507b8369a9d3430916d364f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Fri, 22 May 2020 11:47:12 +0200 Subject: [PATCH] tidy for the previous commit --- app/src/components/Settings/MediaSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/Settings/MediaSettings.js b/app/src/components/Settings/MediaSettings.js index 01b22a4..ae73613 100644 --- a/app/src/components/Settings/MediaSettings.js +++ b/app/src/components/Settings/MediaSettings.js @@ -339,7 +339,7 @@ const MediaSettings = ({ { audioDevices.map((audio, index) => { return ( - {audio.label!=='' ? audio.label : index} + {audio.label==='' ? index+1 : audio.label } ); })}