web: do not show download button when still loading

This commit is contained in:
Sasial 2025-03-12 20:01:44 +10:00
parent 440d039e2c
commit 1e4b60079f
No known key found for this signature in database
GPG Key ID: EDFF63A7501D3F83

View File

@ -165,7 +165,7 @@
{#if $link && !isLoading}
<ClearButton click={() => ($link = "")} />
{/if}
{#if validLink($link)}
{#if validLink($link) && !isBotCheckOngoing}
<DownloadButton
url={$link}
bind:this={downloadButton}