Commit 81f7ecae3963ee8fce920d778992a5b4b963a6ad
1 parent
9de6e59b
Exists in
master
no message
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/dashboard/dashboard.component.ts
| @@ -16,7 +16,7 @@ export class DashboardComponent implements OnInit { | @@ -16,7 +16,7 @@ export class DashboardComponent implements OnInit { | ||
| 16 | console.log(days) | 16 | console.log(days) |
| 17 | 17 | ||
| 18 | if(days > 0 && days <= 7){ | 18 | if(days > 0 && days <= 7){ |
| 19 | - return 'red'; | 19 | + return 'green'; |
| 20 | } | 20 | } |
| 21 | 21 | ||
| 22 | if (days > 8 && days <= 15){ | 22 | if (days > 8 && days <= 15){ |
| @@ -24,7 +24,7 @@ export class DashboardComponent implements OnInit { | @@ -24,7 +24,7 @@ export class DashboardComponent implements OnInit { | ||
| 24 | } | 24 | } |
| 25 | 25 | ||
| 26 | if (days >= 16){ | 26 | if (days >= 16){ |
| 27 | - return 'green'; | 27 | + return 'red'; |
| 28 | } | 28 | } |
| 29 | } | 29 | } |
| 30 | 30 |