Skip to content

Commit

Permalink
Fixes matteom#1. Displaying view count instead of duplicate answer co…
Browse files Browse the repository at this point in the history
…unt.
  • Loading branch information
sgraesser committed Aug 29, 2021
1 parent 6a81b01 commit c4b4704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TopQuestions/TopQuestionsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct Details: View {
Label("\(question.score.thousandsFormatting)", systemImage: "arrowtriangle.up.circle")
Label("\(question.answerCount.thousandsFormatting)", systemImage: "ellipses.bubble")
.padding(.leading, 108.0)
Label("\(question.answerCount.thousandsFormatting)", systemImage: "eye")
Label("\(question.viewCount.thousandsFormatting)", systemImage: "eye")
.padding(.leading, 204.0)
}
.foregroundColor(.teal)
Expand Down

0 comments on commit c4b4704

Please sign in to comment.