diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index 10f6603..7ee0ec4 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -240,8 +240,12 @@
{{ station.onlineInfo?.maxUsers || 0 }}
-
- {{ station.onlineInfo?.spawns.length || 0 }}
+ |
+ {{ station.onlineInfo?.dispatcherRate ?? 0 }}
+ |
+
+
+ {{ station.onlineInfo?.spawns.length ?? 0 }}
|
{
const routes = scenery.routesInfo.reduce(
(acc, route) => {
+ if (route.hidden) return acc;
+
const tracksKey = route.routeTracks == 2 ? 'double' : 'single';
const isElectric = route.isElectric;
const routesKey: keyof StationRoutes = `${tracksKey}${
|