refactor: optimization of train schedules

This commit is contained in:
2024-05-19 19:50:01 +02:00
parent d91d4cc6a8
commit 8417754403
15 changed files with 331 additions and 356 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export default defineComponent({
computed: {
chosenTrain() {
return this.store.trainList.find((train) => train.trainId == this.store.chosenModalTrainId);
return this.store.trainList.find((train) => train.id == this.store.chosenModalTrainId);
}
},