Skip to content

Commit

Permalink
pkp/pkp-lib#9453 Use the localized recommandation value
Browse files Browse the repository at this point in the history
  • Loading branch information
nibou230 committed Jan 19, 2024
1 parent d966ac8 commit b12b2ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/reviewerSubmission/RoundHistoryModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
<p v-else>{{ t('reviewer.submission.reviewRound.emailLog.defaultMessage') }}</p>
</div>
<div v-else>
<Panel v-if="store.reviewRoundHistory.reviewAssignment.recommendation" v-bind="panelOptions" class="mb-4">
<Panel v-if="store.reviewRoundHistory.recommendation" v-bind="panelOptions" class="mb-4">
<PanelSection>
<template #header>
<h2>{{ t('reviewer.article.recommendation') }}</h2>
</template>
<p>{{ store.reviewRoundHistory.reviewAssignment.recommendation }}</p>
<p>{{ store.reviewRoundHistory.recommendation }}</p>
</PanelSection>
</Panel>

Expand Down

0 comments on commit b12b2ef

Please sign in to comment.