[CodeFactor] Apply fixes to commit 4cf915c

This commit is contained in:
codefactor-io 2023-11-10 15:09:18 +00:00
parent 4cf915c399
commit 7ba7a435ef
No known key found for this signature in database
GPG key ID: B66B2D63282C190F

View file

@ -18,7 +18,6 @@ export const useAudioStore = defineStore("audioStore", () => {
function getInputDevices() {
var html = "";
if (inputDevices.value.length > 0) {
for (var key in inputDevices.value) {
let selected = "";
@ -45,7 +44,6 @@ export const useAudioStore = defineStore("audioStore", () => {
if (outputDevices.value.length > 0) {
for (var key in outputDevices.value) {
let selected = "";
if (outputDevices.value[key]["id"] == settings.tx_audio) {
selected = "selected";