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:
João Vitória Silva
2025-12-15 12:29:13 +00:00
parent 4d46e88c82
commit 70b31fc6d3

View File

@@ -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>