Skip to content

Commit 630a244

Browse files
committed
pkp/pkp-lib#9453 Show review comments as HTML
1 parent b12b2ef commit 630a244

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/pages/reviewerSubmission/RoundHistoryModal.vue

+2-6
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,13 @@
5454
<template #header>
5555
<h3>{{ t('reviewer.submission.reviewRound.comments.authorAndEditor') }}</h3>
5656
</template>
57-
<p v-for="reviewComment in store.reviewRoundHistory.comments">
58-
{{ reviewComment }}
59-
</p>
57+
<p v-for="reviewComment in store.reviewRoundHistory.comments" v-html="reviewComment"></p>
6058
</PanelSection>
6159
<PanelSection v-if="store.reviewRoundHistory.privateComments.length">
6260
<template #header>
6361
<h3>{{ t('reviewer.submission.reviewRound.comments.editorOnly') }}</h3>
6462
</template>
65-
<p v-for="reviewComment in store.reviewRoundHistory.privateComments">
66-
{{ reviewComment }}
67-
</p>
63+
<p v-for="reviewComment in store.reviewRoundHistory.privateComments" v-html="reviewComment"></p>
6864
</PanelSection>
6965
</PanelSection>
7066
</Panel>

0 commit comments

Comments
 (0)