diff --git a/components/Conversation/Conversation.tsx b/components/Conversation/Conversation.tsx
index 1281d453..771b839b 100644
--- a/components/Conversation/Conversation.tsx
+++ b/components/Conversation/Conversation.tsx
@@ -391,10 +391,10 @@ function OpinionGroupView({
return (
{groupName} Summary
-
{group.summary}
+
{group.summary}
-
{groupName} Opinions
+
{groupName} Concensus
{group.characteristicVotes.length > 0 && (
<>
({
opinion,
totalParticipants,
}: OpinionScoreStatementProps) {
- if (!opinion) return null;
const supportPercentage = Math.round(
(opinion.supportVotes / opinion.totalVotes) * 100
);
diff --git a/graphql/queries/conversations.graphql b/graphql/queries/conversations.graphql
index c67d1e79..585405a4 100644
--- a/graphql/queries/conversations.graphql
+++ b/graphql/queries/conversations.graphql
@@ -81,6 +81,7 @@ query ConversationOpinionAnalysis($conversationId: ID!) {
significanceLevel
statement {
content
+ totalVotes
supportVotes
opposeVotes
neutralVotes