We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d61233 commit f752b17Copy full SHA for f752b17
src/app/modules/time-entries/components/calendar/calendar.component.ts
@@ -64,9 +64,7 @@ export class CalendarComponent implements OnInit {
64
}
65
66
scrollToCurrentTimeMarker() {
67
- console.log('Si entro');
68
if (this.calendarView === CalendarView.Week || CalendarView.Day) {
69
- console.log(`Calendar View ${this.calendarView}`);
70
const minutesSinceStartOfDay = differenceInMinutes(startOfHour(this.currentDate), startOfDay(this.currentDate));
71
const headerHeight = this.calendarView === CalendarView.Week ? this.DEFAULT_HEADER_HEIGHT : 0;
72
this.scrollContainer.nativeElement.scrollTop = minutesSinceStartOfDay * this.VARIATION_HEIGHT + headerHeight;
0 commit comments