fix: scenery timetable duplicates; fix: not opening train modal for queries

This commit is contained in:
2024-05-25 16:02:20 +02:00
parent 29de1b3c4b
commit 65b159f8fd
10 changed files with 34 additions and 42 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ export default defineComponent({
computed: {
chosenTrain() {
return this.store.trainList.find((train) => train.id == this.store.chosenModalTrainId);
return this.store.trainList.find((train) => train.modalId == this.store.chosenModalTrainId);
}
},