mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-07 23:13:57 -05:00
Fix swapped labels for elapsed and moving time
Corrects the display labels for elapsed time and moving time in ActivityBellowMPillsComponent.vue to match their respective data fields. #440
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
</div>
|
||||
<div class="d-flex justify-content-between mt-3" v-if="activity.total_elapsed_time">
|
||||
<span>
|
||||
{{ $t('activityBellowMPillsComponent.labelMovingTime') }}
|
||||
{{ $t('activityBellowMPillsComponent.labelElapsedTime') }}
|
||||
</span>
|
||||
<span>
|
||||
<b>{{ formatSecondsToMinutes(activity.total_elapsed_time) }}</b>
|
||||
@@ -36,7 +36,7 @@
|
||||
</div>
|
||||
<div class="d-flex justify-content-between mt-3" v-if="activity.total_timer_time">
|
||||
<span>
|
||||
{{ $t('activityBellowMPillsComponent.labelElapsedTime') }}
|
||||
{{ $t('activityBellowMPillsComponent.labelMovingTime') }}
|
||||
</span>
|
||||
<span>
|
||||
<b>{{ formatSecondsToMinutes(activity.total_timer_time) }}</b>
|
||||
|
||||
Reference in New Issue
Block a user