From bf7d00e29c30d338b485df82dde825e53761527d Mon Sep 17 00:00:00 2001 From: Spythere Date: Mon, 14 Apr 2025 14:27:25 +0200 Subject: [PATCH] chore: removed obsolete console logs --- src/components/Timetable/TrainTimetable.vue | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/Timetable/TrainTimetable.vue b/src/components/Timetable/TrainTimetable.vue index 0992660..7dfde23 100644 --- a/src/components/Timetable/TrainTimetable.vue +++ b/src/components/Timetable/TrainTimetable.vue @@ -89,8 +89,8 @@ const computedTimetableRows = computed(() => { for (const stop of stopList) { if (stop.arrivalLine && stop.arrivalLine == currentPath.arrivalLine) { - console.log('arrivalKm', arrivalKm); - console.log('stopDistance', stop.stopDistance); + // console.log('arrivalKm', arrivalKm); + // console.log('stopDistance', stop.stopDistance); if (arrivalKm >= stop.stopDistance) arrivalKm = (Number(stopRows[stopRows.length - 1].departureKm ?? '0') + stop.stopDistance) / 2; @@ -191,13 +191,13 @@ const computedTimetableRows = computed(() => { stopRows[i].departureSpeed = currentPath.departureLineData.routeSpeed; stopRows[i].departureTracks = currentPath.departureLineData.routeTracks; - console.log( - stop.departureLine, - currentPath.sceneryName, - stop.stopDistance, - currentPath.departureLineData.routeLength, - currentPath.departureLineData.isRouteSBL - ); + // console.log( + // stop.departureLine, + // currentPath.sceneryName, + // stop.stopDistance, + // currentPath.departureLineData.routeLength, + // currentPath.departureLineData.isRouteSBL + // ); /* if (currentPath.departureLineData.isRouteSBL)