From b19c9c892524cb1809c3af2c25ab2bbf83fc7439 Mon Sep 17 00:00:00 2001 From: Bosco Ho Date: Wed, 11 Oct 2023 00:02:00 -0700 Subject: [PATCH] fixed compact comments not appropriately displaying vote status (#712) --- Mlem/Views/Shared/Comments/Components/CommentBodyView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift b/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift index 9865b1532..8ace83776 100644 --- a/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift +++ b/Mlem/Views/Shared/Comments/Components/CommentBodyView.swift @@ -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)