diff --git a/frontend/src/component/insights/componentsStat/HealthStats/HealthStats.tsx b/frontend/src/component/insights/componentsStat/HealthStats/HealthStats.tsx index 45b428b966..b5db90254d 100644 --- a/frontend/src/component/insights/componentsStat/HealthStats/HealthStats.tsx +++ b/frontend/src/component/insights/componentsStat/HealthStats/HealthStats.tsx @@ -61,22 +61,22 @@ export const HealthStats: FC = ({ Instance health - {`${value}%`} + {`${value || 0}%`} Healthy flags - {healthy} + {healthy || 0} Stale flags - {stale} + {stale || 0} Potencially stale flags - {potentiallyStale} + {potentiallyStale || 0}