[CodeFactor] Apply fixes

This commit is contained in:
codefactor-io 2023-11-18 16:12:05 +00:00
parent a2130fab5e
commit 2582972c34
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
17 changed files with 39 additions and 42 deletions

View file

@ -77,9 +77,7 @@ function set_hamlib_rf_level() {
id="dropdownMenuButton" id="dropdownMenuButton"
data-bs-toggle="dropdown" data-bs-toggle="dropdown"
aria-expanded="false" aria-expanded="false"
> ></button>
</button>
<!-- Dropdown Menu --> <!-- Dropdown Menu -->
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <ul class="dropdown-menu" aria-labelledby="dropdownMenuButton">

View file

@ -1,5 +1,4 @@
<script setup lang="ts"> <script setup lang="ts">
import { setActivePinia } from "pinia"; import { setActivePinia } from "pinia";
import pinia from "../store/index"; import pinia from "../store/index";
setActivePinia(pinia); setActivePinia(pinia);

View file

@ -7,7 +7,6 @@ import { useStateStore } from "../store/stateStore.js";
const state = useStateStore(pinia); const state = useStateStore(pinia);
import { settingsStore as settings } from "../store/settingsStore.js"; import { settingsStore as settings } from "../store/settingsStore.js";
</script> </script>
<template> <template>

View file

@ -318,7 +318,10 @@ import { serialDeviceOptions } from "../js/deviceFormHelper";
@change="onChange" @change="onChange"
v-model="settings.remote.RADIO.serial_port" v-model="settings.remote.RADIO.serial_port"
> >
<option v-for="option in serialDeviceOptions()" v-bind:value="option.port"> <option
v-for="option in serialDeviceOptions()"
v-bind:value="option.port"
>
{{ option.port }} {{ option.port }}
</option> </option>
</select> </select>

View file

@ -6,7 +6,6 @@ import pinia from "../store/index";
setActivePinia(pinia); setActivePinia(pinia);
import { settingsStore as settings, onChange } from "../store/settingsStore.js"; import { settingsStore as settings, onChange } from "../store/settingsStore.js";
</script> </script>
<template> <template>

View file

@ -701,7 +701,7 @@ export function startChatWithNewStation(call) {
let newchat: newChatDefaultObject = { let newchat: newChatDefaultObject = {
command: "newchat", command: "newchat",
is_new: false, is_new: false,
timestamp: Math.floor((new Date()).getTime() / 1000), timestamp: Math.floor(new Date().getTime() / 1000),
dxcallsign: call, dxcallsign: call,
}; };
addObjToDatabase(newchat); addObjToDatabase(newchat);
@ -716,7 +716,6 @@ if (!chat.sorted_beacon_list[call]) {
} }
//chat.unsorted_chat_list.push(newchat); //chat.unsorted_chat_list.push(newchat);
//chat.sorted_chat_list = sortChatList(); //chat.sorted_chat_list = sortChatList();
} }
// function for handling a received beacon // function for handling a received beacon

View file

@ -84,4 +84,4 @@ if (settingsStore.remote.STATION.mycall === "") {
watch(settingsStore.local, (oldValue, newValue) => { watch(settingsStore.local, (oldValue, newValue) => {
// TODO handle local file saving // TODO handle local file saving
const cenas = newValue; const cenas = newValue;
}) });