Let users see the errors before the download is done

This commit is contained in:
RemixDev 2021-07-27 12:45:38 +02:00
parent a53912dd70
commit 03d3a7dfc3
1 changed files with 2 additions and 2 deletions

View File

@ -14,9 +14,9 @@
<span <span
v-if="hasFails" v-if="hasFails"
class="flex items-center" class="flex items-center"
:class="{ clickable: finishedWithFails }" :class="{ clickable: hasFails }"
style="justify-content: center" style="justify-content: center"
@click="finishedWithFails ? $emit('show-errors', queueItem) : null" @click="hasFails ? $emit('show-errors', queueItem) : null"
> >
{{ queueItem.failed }} {{ queueItem.failed }}
<i class="material-icons">error_outline</i> <i class="material-icons">error_outline</i>