mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-15 02:21:39 +00:00
frontend: explicitar cuando es que el downloadURL no existe
This commit is contained in:
parent
71bc6430e9
commit
3b8eb1a222
1 changed files with 17 additions and 10 deletions
|
@ -68,7 +68,12 @@
|
||||||
</span>
|
</span>
|
||||||
{/if}
|
{/if}
|
||||||
</h3>
|
</h3>
|
||||||
{#if error}
|
{#if !dist.downloadURL}
|
||||||
|
<small class="block text-red-700">
|
||||||
|
No está en este archivo porque el link de descarga estaba
|
||||||
|
roto en la fuente al momento de descargarlo :(
|
||||||
|
</small>
|
||||||
|
{:else if error}
|
||||||
<small class="block text-red-700">
|
<small class="block text-red-700">
|
||||||
No está en este archivo porque hubo un error al descargarlo
|
No está en este archivo porque hubo un error al descargarlo
|
||||||
:(
|
:(
|
||||||
|
@ -87,15 +92,17 @@
|
||||||
>Descargar</button
|
>Descargar</button
|
||||||
>
|
>
|
||||||
{/if}
|
{/if}
|
||||||
<a
|
{#if dist.downloadURL}
|
||||||
class="flex items-center leading-none text-gray-600 gap-1 pt-2"
|
<a
|
||||||
href={dist.downloadURL}
|
class="flex items-center leading-none text-gray-600 gap-1 pt-2"
|
||||||
target="_blank"
|
href={dist.downloadURL}
|
||||||
rel="noopener"
|
target="_blank"
|
||||||
>
|
rel="noopener"
|
||||||
<ExternalLink fill="currentColor" class="h-4" />
|
>
|
||||||
Fuente
|
<ExternalLink fill="currentColor" class="h-4" />
|
||||||
</a>
|
Fuente
|
||||||
|
</a>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{/each}
|
{/each}
|
||||||
|
|
Loading…
Reference in a new issue