From b74359487dc6e8dad569126cab9e29cf0db3a334 Mon Sep 17 00:00:00 2001 From: zuies Date: Thu, 14 Sep 2023 18:15:00 +0300 Subject: [PATCH] add property for fix filter issue on boxes --- .../pages/statistics/ActiveMembersComposition.tsx | 1 + .../pages/statistics/DisengagedMembersComposition.tsx | 1 + src/components/pages/statistics/Onboarding.tsx | 1 + src/components/pages/statistics/StatisticalData.tsx | 8 +++++++- 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/pages/statistics/ActiveMembersComposition.tsx b/src/components/pages/statistics/ActiveMembersComposition.tsx index a5b1ac44..9cdd6adf 100644 --- a/src/components/pages/statistics/ActiveMembersComposition.tsx +++ b/src/components/pages/statistics/ActiveMembersComposition.tsx @@ -258,6 +258,7 @@ export default function ActiveMembersComposition({
= ({ statistics, + ableToFilter, overviewType, hideInformationText, handleSelectedOption, @@ -64,12 +66,15 @@ const StatisticalData: React.FC = ({ {statistics.map((stat, index) => (
{ @@ -157,6 +162,7 @@ StatisticalData.defaultProps = { tooltipText: '', }, ], + ableToFilter: false, hideInformationText: false, };