diff --git a/src/components/StationsView/StationTable.vue b/src/components/StationsView/StationTable.vue
index 6ecd927..ffd4b39 100644
--- a/src/components/StationsView/StationTable.vue
+++ b/src/components/StationsView/StationTable.vue
@@ -246,17 +246,17 @@
- {{ station.onlineInfo?.currentUsers || 0 }}
+ {{ station.onlineInfo?.currentUsers ?? '-' }}
/
- {{ station.onlineInfo?.maxUsers || 0 }}
+ {{ station.onlineInfo?.maxUsers ?? '-' }}
|
-
- {{ station.onlineInfo?.dispatcherRate ?? 0 }}
+ |
+ {{ station.onlineInfo?.dispatcherRate ?? '-' }}
|
- {{ station.onlineInfo?.spawns.length ?? 0 }}
+ {{ station.onlineInfo?.spawns.length ?? '-' }}
|
- {{ station.onlineInfo?.scheduledTrainCount.all }}
+ {{ station.onlineInfo?.scheduledTrainCount.all ?? '-' }}
|
- {{ station.onlineInfo?.scheduledTrainCount.unconfirmed }}
+ {{ station.onlineInfo?.scheduledTrainCount.unconfirmed ?? '-' }}
|
- {{ station.onlineInfo?.scheduledTrainCount.confirmed }}
+ {{ station.onlineInfo?.scheduledTrainCount.confirmed ?? '-' }}
|