mirror of
https://github.com/joaovitoriasilva/endurain.git
synced 2026-01-09 15:57:59 -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>
|
||||||
<div class="d-flex justify-content-between mt-3" v-if="activity.total_elapsed_time">
|
<div class="d-flex justify-content-between mt-3" v-if="activity.total_elapsed_time">
|
||||||
<span>
|
<span>
|
||||||
{{ $t('activityBellowMPillsComponent.labelMovingTime') }}
|
{{ $t('activityBellowMPillsComponent.labelElapsedTime') }}
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<b>{{ formatSecondsToMinutes(activity.total_elapsed_time) }}</b>
|
<b>{{ formatSecondsToMinutes(activity.total_elapsed_time) }}</b>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="d-flex justify-content-between mt-3" v-if="activity.total_timer_time">
|
<div class="d-flex justify-content-between mt-3" v-if="activity.total_timer_time">
|
||||||
<span>
|
<span>
|
||||||
{{ $t('activityBellowMPillsComponent.labelElapsedTime') }}
|
{{ $t('activityBellowMPillsComponent.labelMovingTime') }}
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span>
|
||||||
<b>{{ formatSecondsToMinutes(activity.total_timer_time) }}</b>
|
<b>{{ formatSecondsToMinutes(activity.total_timer_time) }}</b>
|
||||||
|
|||||||
Reference in New Issue
Block a user