Fix MoodBarChart to show all 5 mood categories

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 <noreply@anthropic.com>
This commit is contained in:
Trey t
2025-12-22 14:27:43 -06:00
parent 1105383e07
commit a6a6912183

View File

@@ -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)