diff --git a/web/components/cycles/cycles-list-item.tsx b/web/components/cycles/cycles-list-item.tsx index bf0d5c781..929e0a564 100644 --- a/web/components/cycles/cycles-list-item.tsx +++ b/web/components/cycles/cycles-list-item.tsx @@ -38,7 +38,10 @@ type TCyclesListItem = { export const CyclesListItem: FC = (props) => { const { cycle, workspaceSlug, projectId } = props; // store - const { cycle: cycleStore, trackEvent: { setTrackElement } } = useMobxStore(); + const { + cycle: cycleStore, + trackEvent: { setTrackElement }, + } = useMobxStore(); // toast const { setToastAlert } = useToast(); // states @@ -161,6 +164,8 @@ export const CyclesListItem: FC = (props) => { ) : ( {`!`} ) + ) : progress === 100 ? ( + ) : ( {`${progress}%`} )} diff --git a/web/components/modules/module-list-item.tsx b/web/components/modules/module-list-item.tsx index e8be9841b..9c4a16322 100644 --- a/web/components/modules/module-list-item.tsx +++ b/web/components/modules/module-list-item.tsx @@ -139,6 +139,8 @@ export const ModuleListItem: React.FC = observer((props) => { ) : ( {`!`} ) + ) : progress === 100 ? ( + ) : ( {`${progress}%`} )}