Poprawki po migracji

This commit is contained in:
2022-07-16 17:07:57 +02:00
parent 46e700583d
commit 7888e59117
4 changed files with 6 additions and 6 deletions
View File
+4 -4
View File
@@ -1,6 +1,6 @@
import { Availability } from "@/store/storeTypes";
import ScheduledTrain from "./ScheduledTrain";
import StationRoutes from "./StationRoutes";
import { Availability } from '../../store/storeTypes';
import ScheduledTrain from './ScheduledTrain';
import StationRoutes from './StationRoutes';
export default interface Station {
name: string;
@@ -58,5 +58,5 @@ export default interface Station {
}[];
scheduledTrains?: ScheduledTrain[];
}
};
}
+1 -1
View File
@@ -1,4 +1,4 @@
import TrainStop from "@/scripts/interfaces/TrainStop";
import TrainStop from './TrainStop';
export default interface Train {
trainId: string;
+1 -1
View File
@@ -12,7 +12,7 @@
<div class="scenery-left">
<div class="scenery-actions">
<button v-if="!timetableOnly" class="back-btn btn" :title="$t('scenery.return-btn')" @click="navigateTo('/')">
<img :src="getImage('back')" alt="Back to scenery" />
<img :src="getIcon('back')" alt="Back to scenery" />
</button>
</div>