From 7045416dd8f90ae2907af36043364d557ab3d285 Mon Sep 17 00:00:00 2001 From: Paul Li <82799722+wmdev0808@users.noreply.github.com> Date: Thu, 7 Apr 2022 18:09:35 +0800 Subject: [PATCH] fix: Progress widget with circular type is showing wrong value (#12667) -- Output progress value as it is --- app/client/src/widgets/ProgressWidget/component/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/client/src/widgets/ProgressWidget/component/index.tsx b/app/client/src/widgets/ProgressWidget/component/index.tsx index f710d3980b..9fa56deb76 100644 --- a/app/client/src/widgets/ProgressWidget/component/index.tsx +++ b/app/client/src/widgets/ProgressWidget/component/index.tsx @@ -418,7 +418,7 @@ function CircularProgress(props: ProgressComponentProps) { x={VIEWBOX_CENTER_X} y={VIEWBOX_CENTER_Y} > - {`${(value / MAX_VALUE) * 100}%`} + {`${value}%`} )}