Skip to content

Commit 960323b

Browse files
committed
pkp/pkp-lib#9453 Fix for chromatic
1 parent bb4e773 commit 960323b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/pages/reviewerSubmission/RoundHistoryModal.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,11 @@
8181
</div>
8282
<div v-if="store.reviewRoundHistory.publicationKeywords" class="mt-4">
8383
<div class="text-lg-bold">{{ t('reviewer.submission.reviewRound.metadata.keywords') }}:</div>
84-
<div class="text-base-normal mt-1">{{ localize(store.reviewRoundHistory.publicationKeywords).join(', ') }}</div>
84+
<div class="text-base-normal mt-1">
85+
<template v-for="(keyword, index) in localize(store.reviewRoundHistory.publicationKeywords)">
86+
<template v-if="index > 0">, </template><span>{{ keyword }}</span>
87+
</template>
88+
</div>
8589
</div>
8690
</template>
8791
<template v-if="store.reviewRoundHistory.reviewAssignment" #right2>

0 commit comments

Comments
 (0)