From a6a69121838f799ddacb76869ef6472cab42aeee Mon Sep 17 00:00:00 2001 From: Trey t Date: Mon, 22 Dec 2025 14:27:43 -0600 Subject: [PATCH] Fix MoodBarChart to show all 5 mood categories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed filter that hid moods with zero count, ensuring all mood options display even when user hasn't logged that mood in the period. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Shared/Views/MonthView/MonthView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shared/Views/MonthView/MonthView.swift b/Shared/Views/MonthView/MonthView.swift index b92a448..6592b69 100644 --- a/Shared/Views/MonthView/MonthView.swift +++ b/Shared/Views/MonthView/MonthView.swift @@ -427,7 +427,7 @@ struct MoodBarChart: View { var body: some View { VStack(spacing: 8) { - ForEach(metrics.filter { $0.total > 0 }) { metric in + ForEach(metrics) { metric in HStack(spacing: 10) { // Mood icon imagePack.icon(forMood: metric.mood)