Skip to content

Commit a223c77

Browse files
committed
fix: round progress percentage display in VisionAction component
1 parent 8956d6a commit a223c77

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom/VisionAction.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
></div>
103103
<div class="absolute inset-0 flex items-center justify-center text-sm font-medium text-white drop-shadow">
104104
<template v-if="isProcessingAny || isGenerationPaused">
105-
{{ (displayedProcessedCount / totalRecords) * 100 }}%
105+
{{ Math.floor((displayedProcessedCount / totalRecords) * 100) }}%
106106
</template>
107107
<template v-else-if="isGenerationCancelled">
108108
{{ t('Generation cancelled') }}

0 commit comments

Comments
 (0)