Skip to content

Commit

Permalink
pkp/pkp-lib#9453 Show review comments as HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
nibou230 committed Jan 19, 2024
1 parent b12b2ef commit 630a244
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/pages/reviewerSubmission/RoundHistoryModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,13 @@
<template #header>
<h3>{{ t('reviewer.submission.reviewRound.comments.authorAndEditor') }}</h3>
</template>
<p v-for="reviewComment in store.reviewRoundHistory.comments">
{{ reviewComment }}
</p>
<p v-for="reviewComment in store.reviewRoundHistory.comments" v-html="reviewComment"></p>
</PanelSection>
<PanelSection v-if="store.reviewRoundHistory.privateComments.length">
<template #header>
<h3>{{ t('reviewer.submission.reviewRound.comments.editorOnly') }}</h3>
</template>
<p v-for="reviewComment in store.reviewRoundHistory.privateComments">
{{ reviewComment }}
</p>
<p v-for="reviewComment in store.reviewRoundHistory.privateComments" v-html="reviewComment"></p>
</PanelSection>
</PanelSection>
</Panel>
Expand Down

0 comments on commit 630a244

Please sign in to comment.