From a497f6e2f9f17fb5209eb1f127a9a04a64253d21 Mon Sep 17 00:00:00 2001 From: Eric Andrews Date: Tue, 10 Oct 2023 13:09:33 -0400 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)