Skip to content

Commit

Permalink
fixing 2 digits for Bolus in Chart
Browse files Browse the repository at this point in the history
  • Loading branch information
mountrcg committed Nov 29, 2023
1 parent efcfca9 commit f017af3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ struct MainChartView: View {
let formatter = NumberFormatter()
formatter.numberStyle = .decimal
formatter.minimumIntegerDigits = 0
formatter.maximumFractionDigits = 1
formatter.maximumFractionDigits = 2
formatter.decimalSeparator = "."
return formatter
}
Expand Down

0 comments on commit f017af3

Please sign in to comment.