Skip to content

Commit

Permalink
pkp/pkp-lib#9453 Fix for chromatic
Browse files Browse the repository at this point in the history
  • Loading branch information
nibou230 committed Feb 16, 2024
1 parent 74e2b39 commit dc74f09
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/reviewerSubmission/RoundHistoryModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@
</div>
<div v-if="store.reviewRoundHistory.publicationKeywords" class="mt-4">
<div class="text-lg-bold">{{ t('reviewer.submission.reviewRound.metadata.keywords') }}:</div>
<div class="text-base-normal mt-1">{{ localize(store.reviewRoundHistory.publicationKeywords).join(', ') }}</div>
<div class="text-base-normal mt-1">
<template v-for="(keyword, index) in localize(store.reviewRoundHistory.publicationKeywords)">
<template v-if="index > 0">, </template><span>{{ keyword }}</span>
</template>
</div>
</div>
</template>
<template v-if="store.reviewRoundHistory.reviewAssignment" #right2>
Expand Down

0 comments on commit dc74f09

Please sign in to comment.