dev smartfarming #1

Merged
agrilink merged 53 commits from development into main 2024-12-30 05:53:19 +00:00
Showing only changes of commit 10dff91778 - Show all commits

View File

@ -477,7 +477,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
convertDateToDay(dateString: string): string {
const date = new Date(dateString);
const days = ['Sun', 'Mon', 'Tue', 'Wed', 'Thr', 'Fri', 'Sat'];
const days = ['Sun', 'Mon', 'Tues', 'Wed', 'Thrus', 'Fri', 'Sat'];
return days[date.getDay()];
}