From 8a28530cdb8cd97c1d710828ac1504a38dc70e52 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:43:08 -0500 Subject: [PATCH] fix: Simplify rating logic (#7918) --- .../Domain/Recipe/RecipeCardRating.vue | 15 ++++--- .../components/Domain/Recipe/RecipeRating.vue | 45 +++++++------------ 2 files changed, 23 insertions(+), 37 deletions(-) diff --git a/frontend/app/components/Domain/Recipe/RecipeCardRating.vue b/frontend/app/components/Domain/Recipe/RecipeCardRating.vue index f41c4eced..1aed3ed76 100644 --- a/frontend/app/components/Domain/Recipe/RecipeCardRating.vue +++ b/frontend/app/components/Domain/Recipe/RecipeCardRating.vue @@ -6,8 +6,8 @@ class="star" :class="{ 'star-half': star === 'half', - 'text-secondary': !useGroupStyle, - 'text-grey-darken-1': useGroupStyle, + 'text-secondary': !showGroupAverage, + 'text-grey-darken-1': showGroupAverage, }" > @@ -28,7 +28,6 @@