From 5e1e05b001cbbf910d564d5deb35573271a6a5ea Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 23 Apr 2026 11:53:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(frontend)=20use=20a=20more=20stand?= =?UTF-8?q?ard=20(quality)=20rating=20scale?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A 1–7 scale is not commonly used in software products. Feedback from both users and the support team suggests reducing the number of options to simplify usage and analysis. Adopting a 1–5 scale improves usability and makes responses easier to interpret and process. The scale has to be odd. --- CHANGELOG.md | 1 + src/frontend/src/features/rooms/components/Rating.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a44f19f0..31897905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to - 🐛(summary) support webm #1290 - ⬆️(backend) bump django-lasuite to v0.0.26 +- 🩹(frontend) use a more standard (quality) rating scale ## [1.14.0] - 2026-04-16 diff --git a/src/frontend/src/features/rooms/components/Rating.tsx b/src/frontend/src/features/rooms/components/Rating.tsx index c0cd9380..f2d9fcef 100644 --- a/src/frontend/src/features/rooms/components/Rating.tsx +++ b/src/frontend/src/features/rooms/components/Rating.tsx @@ -144,7 +144,7 @@ const RateQuality = ({ posthog, onNext, metadata, - maxRating = 7, + maxRating = 5, }: { posthog: PostHog onNext: () => void