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} {#if $link && !isLoading}
<ClearButton click={() => ($link = "")} /> <ClearButton click={() => ($link = "")} />
{/if} {/if}
{#if validLink($link)} {#if validLink($link) && !isBotCheckOngoing}
<DownloadButton <DownloadButton
url={$link} url={$link}
bind:this={downloadButton} bind:this={downloadButton}