[CodeFactor] Apply fixes to commit 6f28598

This commit is contained in:
codefactor-io 2023-10-28 13:36:29 +00:00
parent 6f28598e6f
commit 270e0d06d9
No known key found for this signature in database
GPG key ID: B66B2D63282C190F
3 changed files with 8 additions and 8 deletions

View file

@ -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' }"

View file

@ -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>

View file

@ -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