diff --git a/src/components/ListPanel/users/SelectReviewerListItem.vue b/src/components/ListPanel/users/SelectReviewerListItem.vue index 86177fb7a..df9168c5c 100644 --- a/src/components/ListPanel/users/SelectReviewerListItem.vue +++ b/src/components/ListPanel/users/SelectReviewerListItem.vue @@ -193,11 +193,11 @@
- +
- {{ privateNotesLabel }} + {{ userPrivateNotesLabel }}
-
+
@@ -288,7 +288,7 @@ export default { type: String, required: true, }, - privateNotesLabel: { + userPrivateNotesLabel: { type: String, required: true, }, diff --git a/src/components/ListPanel/users/SelectReviewerListPanel.vue b/src/components/ListPanel/users/SelectReviewerListPanel.vue index 7360a7869..a9084ee76 100644 --- a/src/components/ListPanel/users/SelectReviewerListPanel.vue +++ b/src/components/ListPanel/users/SelectReviewerListPanel.vue @@ -77,7 +77,7 @@ " :declined-reviews-label="declinedReviewsLabel" :gossip-label="gossipLabel" - :private-notes-label="privateNotesLabel" + :user-private-notes-label="userPrivateNotesLabel" :item="item" :never-assigned-label="neverAssignedLabel" :reassign-label="reassignLabel" @@ -203,7 +203,7 @@ export default { type: String, required: true, }, - privateNotesLabel: { + userPrivateNotesLabel: { type: String, required: true, }, diff --git a/src/docs/components/ListPanel/previews/PreviewSelectReviewerListPanel.vue b/src/docs/components/ListPanel/previews/PreviewSelectReviewerListPanel.vue index 263e31306..15394b367 100644 --- a/src/docs/components/ListPanel/previews/PreviewSelectReviewerListPanel.vue +++ b/src/docs/components/ListPanel/previews/PreviewSelectReviewerListPanel.vue @@ -18,7 +18,7 @@ empty-label="No reviewers found" :filters="filters" gossip-label="Editorial Notes" - private-notes-label="Editorial Private Notes" + user-private-notes-label="Editorial Private Notes" :items="items" :items-max="items.length" :last-round-reviewers="lastRoundReviewers" @@ -73,7 +73,7 @@ export default { }, gossip: "

Aisla is a terrific reviewer but she takes a while to confirm and complete a review. Recommend not using her if you're on a tight deadline.

", - privateNotes: + userPrivateNote: "

Keep this note private. Aisla is a terrific reviewer but she takes a while to confirm and complete a review. Recommend not using her if you're on a tight deadline.

", }, { diff --git a/src/docs/components/ListPanel/readme-select-reviewer.md b/src/docs/components/ListPanel/readme-select-reviewer.md index 29154f1f8..5f80ff4d5 100644 --- a/src/docs/components/ListPanel/readme-select-reviewer.md +++ b/src/docs/components/ListPanel/readme-select-reviewer.md @@ -18,7 +18,7 @@ | `emptyLabel` | A localized string to display when there are no reviewers to show in the list. | | `filters` | An array [Filter](#/component/Filter)s. Default: `[]` | | `gossipLabel` | A localized string for the gossip section. | -| `privateNotesLabel` | A localized string for the private notes section. | +| `userPrivateNotesLabel` | A localized string for the private notes section. | | `id` | A unique id for this component. | | `items` | An array of reviewers. Default: `[]` | | `itemsMax` | A count of all reviewers in the journal, press or preprint server. Default: `0` |