chore: added max timetable speed; route pairing fix

This commit is contained in:
2025-02-03 23:51:47 +01:00
parent 8a5687cc01
commit 5fb1a87b41
4 changed files with 8 additions and 3 deletions
+1
View File
@@ -97,6 +97,7 @@ export const useMainStore = defineStore('mainStore', {
warningNotes: timetable.warningNotes,
hasDangerousCargo: timetable.hasDangerousCargo,
hasExtraDeliveries: timetable.hasExtraDeliveries,
trainMaxSpeed: timetable.trainMaxSpeed,
timetablePath: timetable.path.split(';').map((pathElementString) => {
const [arrival, station, departure] = pathElementString.split(',');