style: estimated time toont altijd 2 cijfers

This commit is contained in:
Timo De Meyst 2025-04-24 21:02:13 +02:00
parent 0a37d96c69
commit 085e72b0eb

View file

@ -274,7 +274,7 @@ import QuestionNotification from "@/components/QuestionNotification.vue";
</template>
<template v-slot:append>
<QuestionNotification :node="node"></QuestionNotification>
<div>{{ node.estimatedTime }}'</div>
<div>{{ (node.estimatedTime!).toLocaleString('en-US', {minimumIntegerDigits: 2, useGrouping:false}) }}'</div>
</template>
</v-list-item>