Skip to content

Commit

Permalink
Group chagnes
Browse files Browse the repository at this point in the history
  • Loading branch information
wileymc committed Dec 16, 2024
1 parent 0ec9011 commit ee4e8a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions components/Conversation/Conversation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -391,10 +391,10 @@ function OpinionGroupView({
return (
<div>
<h2>{groupName} Summary</h2>
<p className={styles.blueText}>{group.summary}</p>
<p style={{ color: "var(--blue-text)" }}>{group.summary}</p>
<div className={styles.divider} />

<h2>{groupName} Opinions</h2>
<h2>{groupName} Concensus</h2>
{group.characteristicVotes.length > 0 && (
<>
<PageIndex
Expand Down Expand Up @@ -574,7 +574,6 @@ function OpinionScoreStatement<T extends BaseOpinionProps>({
opinion,
totalParticipants,
}: OpinionScoreStatementProps<T>) {
if (!opinion) return null;
const supportPercentage = Math.round(
(opinion.supportVotes / opinion.totalVotes) * 100
);
Expand Down
1 change: 1 addition & 0 deletions graphql/queries/conversations.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ query ConversationOpinionAnalysis($conversationId: ID!) {
significanceLevel
statement {
content
totalVotes
supportVotes
opposeVotes
neutralVotes
Expand Down

0 comments on commit ee4e8a1

Please sign in to comment.