diff --git a/openreview/venue/webfield/paperBidWebfield.js b/openreview/venue/webfield/paperBidWebfield.js index 1d61d4e5c7..e248db35c1 100644 --- a/openreview/venue/webfield/paperBidWebfield.js +++ b/openreview/venue/webfield/paperBidWebfield.js @@ -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 return { component: 'BidConsole', @@ -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 } }