Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/ex4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ After completing these steps, you will have added two formatters to the controll
}

formatIconColor(incidence: number) {
if (incidence < 500) {
if (incidence < 50) {
return IconColor.Default;
} else if (incidence < 800) {
} else if (incidence < 100) {
return IconColor.Critical;
} else {
return IconColor.Negative;
Expand Down