Add track popups

This commit is contained in:
2025-05-03 11:56:04 +02:00
parent e878b159bf
commit 3571f93e41
6 changed files with 157 additions and 15 deletions

View File

@@ -10,7 +10,8 @@ export default {
<template>
<span>
{{ localTime.substr(-5) }}
<sup v-if="offset != '0'" :title="offset+' '+spot.lang('unit_day')+' ('+localTime.substr(0, 5)+')'">{{ ' '+offset }}</sup>
<span>{{ localTime.substring(-5) }}</span>
<sup v-if="offset != '0'" :title="offset+' '+spot.lang('unit_day')+' ('+localTime.substring(0, 5)+')'">{{ ' '+offset }}</sup>
<span>&nbsp;{{ spot.lang('local_time', ' ').trim() }}</span>
</span>
</template>