diff --git a/src/components/SceneryView/SceneryTimetable.vue b/src/components/SceneryView/SceneryTimetable.vue
index 37f4a18..1db7ec2 100644
--- a/src/components/SceneryView/SceneryTimetable.vue
+++ b/src/components/SceneryView/SceneryTimetable.vue
@@ -65,7 +65,7 @@
-
+
{{ scheduledTrain.stopInfo.arrivalTimeString }} ({{ scheduledTrain.stopInfo.arrivalDelay }})
+
diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index 9fa86da..c381e85 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -37,8 +37,10 @@
class="station"
v-for="(station, i) in stations"
:key="i + station.name"
- @click="() => setScenery(station.name)"
+ @click.left="setScenery(station.name)"
+ @click.right="openForumSite($event, station.generalInfo?.url)"
@keydown.enter="setScenery(station.name)"
+ @keydown.space="openForumSite($event, station.generalInfo?.url)"
tabindex="0"
>
|
-