diff --git a/front_end/src/app/(main)/questions/[id]/components/multiple_choices_chart_view/index.tsx b/front_end/src/app/(main)/questions/[id]/components/multiple_choices_chart_view/index.tsx index c543fff7af..6c5674cbed 100644 --- a/front_end/src/app/(main)/questions/[id]/components/multiple_choices_chart_view/index.tsx +++ b/front_end/src/app/(main)/questions/[id]/components/multiple_choices_chart_view/index.tsx @@ -327,40 +327,50 @@ const MultiChoicesChartView: FC = ({ )} - {isTooltipActive && !!tooltipChoices.length && ( - -
- - - {t("activeForecastersLabel")} - - - {forecastersCount} - - - ) : null - } - /> -
-
- )} + {isTooltipActive && + (tooltipChoices.length > 0 || + !!tooltipUserChoices?.length || + !!forecastAvailability?.cpRevealsOn || + !!forecastAvailability?.isEmpty) && ( + +
+ + + {t("activeForecastersLabel")} + + + {forecastersCount} + + + ) : null + } + /> +
+
+ )} ); };