Skip to content

Commit

Permalink
Merge pull request #102 from openzim/fix_message
Browse files Browse the repository at this point in the history
Fix message about bookmark/email when task is running
  • Loading branch information
benoit74 authored Nov 28, 2024
2 parents a415741 + 5d1e0a1 commit 8108b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/views/RequestStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ watch(
<template #text>
<p>{{ $t('requestStatus.beingProcessedExplanation') }}</p>
<p>{{ $t('requestStatus.bookmarkUrl') }}</p>
<p v-if="!mainStore.taskData.hasEmail">{{ $t('requestStatus.emailNotification') }}</p>
<p v-if="mainStore.taskData.hasEmail">{{ $t('requestStatus.emailNotification') }}</p>
<p v-else>{{ $t('requestStatus.noEmailNotification') }}</p>
</template>
</v-alert>
Expand Down

0 comments on commit 8108b47

Please sign in to comment.