Skip to content

Commit

Permalink
fixed compact comments not appropriately displaying vote status (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
boscojwho committed Nov 23, 2023
1 parent 47ef2af commit 5346be7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct CommentBodyView: View {
}
} else {
HStack(spacing: AppConstants.iconToTextSpacing) {
Image(systemName: myVote == .resetVote ? Icons.upvoteSquare : myVote.iconName)
Image(systemName: myVote == .resetVote ? Icons.upvoteSquare : myVote.iconNameFill)
Text(String(commentView.counts.score))
}
.foregroundColor(.secondary)
Expand Down

0 comments on commit 5346be7

Please sign in to comment.