Ver Fonte

fix: retrieval value greater more than 1 caused ui problem (#4718)

Joel há 11 meses atrás
pai
commit
5bcbcd3c57

+ 1 - 1
web/app/components/datasets/documents/detail/completed/SegmentCard.tsx

@@ -23,7 +23,7 @@ const ProgressBar: FC<{ percent: number; loading: boolean }> = ({ percent, loadi
       <div className={cn(s.progress, loading ? s.progressLoading : '')}>
         <div
           className={s.progressInner}
-          style={{ width: `${loading ? 0 : (percent * 100).toFixed(2)}%` }}
+          style={{ width: `${loading ? 0 : (Math.min(percent, 1) * 100).toFixed(2)}%` }}
         />
       </div>
       <div className={loading ? s.progressTextLoading : s.progressText}>{loading ? null : percent.toFixed(2)}</div>