chore: lint

This commit is contained in:
izzy
2025-11-21 18:02:27 +00:00
parent 0940c313ac
commit 86d8e1a092
6 changed files with 11 additions and 11 deletions

View File

@@ -104,7 +104,7 @@
}
}
async function download(filename: string) {
function download(filename: string) {
location.href = getBaseUrl() + '/admin/maintenance/backups/' + filename;
}
@@ -117,7 +117,7 @@
title: 'Download',
icon: mdiDownload,
onSelect() {
download(filename);
void download(filename);
},
},
{
@@ -125,7 +125,7 @@
icon: mdiTrashCanOutline,
color: 'danger',
onSelect() {
remove(filename);
void remove(filename);
},
},
],

View File

@@ -39,7 +39,7 @@
<CardBody>
<Stack>
{#if integrity}
{#each Object.entries(integrity.storageIntegrity) as [folder, { readable, writable }]}
{#each Object.entries(integrity.storageIntegrity) as [folder, { readable, writable }] (folder)}
<HStack>
<Icon
icon={writable ? mdiCheck : mdiClose}
@@ -54,7 +54,7 @@
>
</HStack>
{/each}
{#each Object.entries(integrity.storageHeuristics) as [folder, { files }]}
{#each Object.entries(integrity.storageHeuristics) as [folder, { files }] (folder)}
{#if folder !== 'backups'}
<HStack class="items-start">
<Icon