chore(journal): added synching detailed timetable data with basic

This commit is contained in:
2026-02-17 02:17:32 +01:00
parent 329c85b858
commit 7f315b549e
4 changed files with 50 additions and 33 deletions
@@ -10,7 +10,7 @@
<hr />
<div @click="toggleExtraInfo" style="cursor: pointer">
<div style="cursor: pointer">
<!-- Status -->
<EntryStatus :timetable="timetableEntry" />
</div>
@@ -60,8 +60,8 @@ export default defineComponent({
},
methods: {
toggleExtraInfo() {
this.$emit('toggleShowExtraInfo');
toggleExtraInfo(data: API.TimetableHistory.Data | null) {
this.$emit('toggleShowExtraInfo', data);
}
}
});