Skip to content

Commit

Permalink
Do not uppercase key
Browse files Browse the repository at this point in the history
  • Loading branch information
tahirmt committed Jun 4, 2023
1 parent 29436f8 commit 8cafd95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ struct ConsoleTaskCell: View {

ForEach(headerValueMap.keys.sorted(), id: \.self) { key in
HStack {
Text(key.uppercased())
Text(key)
.font(.caption)
.foregroundColor(.secondary)

Expand Down

0 comments on commit 8cafd95

Please sign in to comment.