chore: added info about offline driver for train info tooltip and scenery timetables

This commit is contained in:
2025-07-19 15:34:49 +02:00
parent 8b6944a8e5
commit 87f7ff58e8
3 changed files with 19 additions and 1 deletions
@@ -13,7 +13,12 @@
<div class="text--grayed">
{{ displayTrainPosition(trainInfo) }} - {{ trainInfo.speed }}km/h
<span v-if="!trainInfo.online" style="color: salmon">
- offline {{ lastSeenMessage(trainInfo.lastSeen) }}</span
>
</div>
<div></div>
</span>
</div>
</template>
@@ -39,6 +44,10 @@ export default defineComponent({
// Passed "content" string should be the desired train's ID
return this.mainStore.trainList.find((t) => t.id === this.tooltipStore.content);
},
lastSceneryStatus() {
}
}
});