+
{{ stationInfo.dispatcherRate }}
@@ -42,14 +37,10 @@
- {{
- stationInfo.scheduledTrains.length
- }}
+ {{ stationInfo.scheduledTrains.length }}
/
{{
- stationInfo.scheduledTrains.filter(
- (train) => train.stopInfo.confirmed
- ).length
+ stationInfo.scheduledTrains.filter((train) => train.stopInfo.confirmed).length
}}
@@ -60,18 +51,14 @@
v-if="stationInfo.controlType"
:src="require(`@/assets/icon-${stationInfo.controlType}.svg`)"
:alt="stationInfo.controlType"
- :title="
- $t('desc.control-type') + $t(`controls.${stationInfo.controlType}`)
- "
+ :title="$t('desc.control-type') + $t(`controls.${stationInfo.controlType}`)"
/>
-
+
- {{
- stationInfo.dispatcherExp > 1 ? stationInfo.dispatcherExp : "L"
- }}
+ {{ stationInfo.dispatcherExp > 1 ? stationInfo.dispatcherExp : 'L' }}
{{ stationInfo.dispatcherName }}
@@ -142,16 +113,14 @@
{{ $t(`status.${stationInfo.statusID}`) }}
- {{
- stationInfo.statusID == "online" ? stationInfo.statusTimeString : ""
- }}
+ {{ stationInfo.statusID == 'online' ? stationInfo.statusTimeString : '' }}
@@ -166,17 +135,14 @@
{{ train.driverName }}
-
- {{ $t("scenery.no-users") }}
+
+ {{ $t('scenery.no-users') }}
@@ -189,10 +155,8 @@
{{ spawn.spawnLength }}m
- {{ $t("scenery.no-spawns") }}
+ {{ $t('scenery.no-spawns') }}
@@ -201,9 +165,9 @@
\ No newline at end of file
+
diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index 338bba0..6036cc5 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -47,6 +47,7 @@
'station-unavailable': station.unavailable,
}"
>
+
{{ station.stationProject }}
{{ station.stationName }}
diff --git a/src/store/index.ts b/src/store/index.ts
index 48f657f..03b8ed1 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -332,7 +332,6 @@ export const store = createStore
({
else if (listedStationData)
acc.push({
...station,
- stationProject: "",
stationHash: "",
maxUsers: 0,
currentUsers: 0,