mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
[CodeFactor] Apply fixes to commit 6f28598
This commit is contained in:
parent
6f28598e6f
commit
270e0d06d9
3 changed files with 8 additions and 8 deletions
|
@ -51,8 +51,10 @@
|
|||
<!-- Display formatted timestamp in card-footer -->
|
||||
</div>
|
||||
|
||||
<div class="card-footer p-0 border-top-0" v-if="message.percent < 100 || message.status === 'failed'"
|
||||
>
|
||||
<div
|
||||
class="card-footer p-0 border-top-0"
|
||||
v-if="message.percent < 100 || message.status === 'failed'"
|
||||
>
|
||||
<div
|
||||
class="progress rounded-0 rounded-bottom"
|
||||
:style="{ height: '10px' }"
|
||||
|
|
|
@ -112,7 +112,6 @@ function saveSettings() {
|
|||
id="max_retry_attempts"
|
||||
@change="saveSettings"
|
||||
v-model="settings.max_retry_attempts"
|
||||
|
||||
>
|
||||
<option value="1">1</option>
|
||||
<option value="2">2</option>
|
||||
|
|
|
@ -206,9 +206,9 @@ export function newMessage(
|
|||
filename = "";
|
||||
}
|
||||
|
||||
console.log(file)
|
||||
console.log(filetype)
|
||||
console.log(filename)
|
||||
console.log(file);
|
||||
console.log(filetype);
|
||||
console.log(filename);
|
||||
|
||||
var file_checksum = ""; //crc32(file).toString(16).toUpperCase();
|
||||
var message_type = "transmit";
|
||||
|
@ -564,7 +564,6 @@ export async function updateAllChat(cleanup) {
|
|||
databaseUpsert(item.uuid, "bytesperminute", 0);
|
||||
updateUnsortedChatListEntry(item.uuid, "bytesperminute", 0);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
})
|
||||
|
@ -890,7 +889,7 @@ export function requestMessageInfo(id) {
|
|||
// id and uuid are the same
|
||||
var data = getFromUnsortedChatListByUUID(id);
|
||||
chat.selectedMessageObject = data;
|
||||
console.log(data)
|
||||
console.log(data);
|
||||
if (
|
||||
typeof data["speed_list"] !== "undefined" &&
|
||||
data["speed_list"].length > 0
|
||||
|
|
Loading…
Reference in a new issue