commit bd3b39e733538d2a6bd5f7c106abafdab0cece77
parent 8a5118d5ed95f30b5bb233e42578aad91a5598dd
Author: ashermorgan <59518073+ashermorgan@users.noreply.github.com>
Date: Thu, 11 Nov 2021 13:39:14 -0800
Show at least 3 digits of pace in target tables
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/SimpleTargetTable.vue b/src/components/SimpleTargetTable.vue
@@ -29,7 +29,7 @@
</td>
<td v-if="showPace" colspan="2">
- {{ formatDuration(getPace(item), 0, 0) }}
+ {{ formatDuration(getPace(item), 3, 0) }}
/ {{ distanceUnits[getDefaultDistanceUnit()].symbol }}
</td>
</tr>