Skip to content

Commit fcb9c44

Browse files
committed
fix(durations): make sure numbers don't shift when changing
1 parent a741d3b commit fcb9c44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

components/TimeDuration.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ const props = defineProps<{
66
const timeAsText = computed(() => formatTime(props.duration));
77
</script>
88
<template>
9-
{{ timeAsText }}
9+
<span class="tabular-nums">{{ timeAsText }}</span>
1010
</template>

0 commit comments

Comments
 (0)