Header chart view on main page

change layout of main page rows
This commit is contained in:
Trey t
2022-01-16 20:50:41 -06:00
parent d9add2eed8
commit 94888c9ea5
5 changed files with 57 additions and 27 deletions

View File

@@ -214,7 +214,7 @@ struct FilterView: View {
HStack {
Spacer()
ForEach(Mood.allValues.reversed(), id: \.self) { mood in
ForEach(Mood.allValues, id: \.self) { mood in
StatsSubView(data: self.dataHolder.uncategorizedData, mood: mood)
Spacer()
}