We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8956d6a commit a223c77Copy full SHA for a223c77
1 file changed
custom/VisionAction.vue
@@ -102,7 +102,7 @@
102
></div>
103
<div class="absolute inset-0 flex items-center justify-center text-sm font-medium text-white drop-shadow">
104
<template v-if="isProcessingAny || isGenerationPaused">
105
- {{ (displayedProcessedCount / totalRecords) * 100 }}%
+ {{ Math.floor((displayedProcessedCount / totalRecords) * 100) }}%
106
</template>
107
<template v-else-if="isGenerationCancelled">
108
{{ t('Generation cancelled') }}
0 commit comments