diff --git a/src/components/Analysis/ProfileComparator/ProfileComparator.tsx b/src/components/Analysis/ProfileComparator/ProfileComparator.tsx
index a4159281de4a8465b23d8f55af85bbd6219d0117..284593ddff4158a6a47295e975ef8843fa33fb6d 100644
--- a/src/components/Analysis/ProfileComparator/ProfileComparator.tsx
+++ b/src/components/Analysis/ProfileComparator/ProfileComparator.tsx
@@ -177,7 +177,7 @@ const ProfileComparator = ({
           />
           {performanceIndicators.map(
             (indicator, index) =>
-              indicator.value && (
+              Boolean(indicator.value) && (
                 <ProfileComparatorRow
                   key={FluidType[index]}
                   fluid={index}