diff --git a/src/components/JournalView/JournalTimetablesList.vue b/src/components/JournalView/JournalTimetablesList.vue
index 8c4c44f..e618289 100644
--- a/src/components/JournalView/JournalTimetablesList.vue
+++ b/src/components/JournalView/JournalTimetablesList.vue
@@ -95,9 +95,20 @@
- {{ `${$t('journal.stock-max-speed')}: ${timetable.maxSpeed}km/h` }} •
- {{ `${$t('journal.stock-length')}: ${timetable.stockLength}m` }} •
- {{ `${$t('journal.stock-mass')}: ${Math.floor(timetable.stockMass! / 1000)}t` }}
+
+ {{ $t('journal.stock-max-speed') }}
+ {{ timetable.maxSpeed }}km/h
+
+
+
+ {{ $t('journal.stock-length') }}
+ {{ timetable.stockLength }}m
+
+
+
+ {{ $t('journal.stock-mass') }}
+ {{ Math.floor(timetable.stockMass! / 1000) }}t
+
@@ -193,7 +204,9 @@ export default defineComponent({
\ No newline at end of file
+