Add 7-zip file explorer

This commit is contained in:
2024-01-25 00:29:41 +01:00
parent 0ea5a20d74
commit 62a4a6426f
3 changed files with 27 additions and 5 deletions

View File

@@ -25,7 +25,12 @@ export let item = {
{#each Object.entries(item.children) as [name, child]}
{#if !child.children}
<li>
<a href={child.download_url}>{name}</a> ({formatDataVolume(child.size, 3)})<br/>
{#if child.download_url}
<a href={child.download_url}>{name}</a>
{:else}
{name}
{/if}
({formatDataVolume(child.size, 3)})<br/>
</li>
{/if}
{/each}