Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions openreview/venue/webfield/paperBidWebfield.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ const roleMap = {

const internalRole = roleMap[committeeName]
const affinityScoreId = domain.content[`${internalRole}_affinity_score_id`]?.value
const conflictInvitationId = domain.content[`${internalRole}_conflict_id`]?.value
Comment on lines 14 to +15

return {
component: 'BidConsole',
Expand All @@ -28,15 +29,14 @@ return {

**A few tips:**

- Papers for which you have a conflict of interest are not shown.
- Positive bids ("High" and "Very High") will, in most cases, increase the likelihood that you will be assigned that paper.
${conflictInvitationId ? '- Papers for which you have a conflict of interest are not shown.\n' : ''}- Positive bids ("High" and "Very High") will, in most cases, increase the likelihood that you will be assigned that paper.
- Negative bids ("Low" and "Very Low") will, in most cases, decrease the likelihood that you will be assigned that paper.
${affinityScoreId ? '- Papers are sorted based on keyword similarity with the papers that you provided in the Expertise Selection Interface.' : ''}`
},
venueId: domain.id,
submissionVenueId: domain.content.submission_venue_id?.value,
scoreIds: affinityScoreId ? [affinityScoreId] : [],
conflictInvitationId: domain.content[`${internalRole}_conflict_id`]?.value,
conflictInvitationId: conflictInvitationId,
subjectAreas: domain.content.subject_areas?.value
}
}
Loading