From 22ab265db9fa082c51c0ed8255ba7cde0d3a3162 Mon Sep 17 00:00:00 2001 From: andreas-unleash <104830839+andreas-unleash@users.noreply.github.com> Date: Thu, 4 Aug 2022 15:17:32 +0300 Subject: [PATCH] bug fix --- .../FeatureResultInfoPopoverCell.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx index b227487440..2a03c11451 100644 --- a/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx +++ b/frontend/src/component/playground/Playground/PlaygroundResultsTable/FeatureResultInfoPopoverCell/FeatureResultInfoPopoverCell.tsx @@ -26,7 +26,7 @@ export const FeatureResultInfoPopoverCell = ({ const [open, setOpen] = useState(false); const { classes: styles } = useStyles(); const ref = useRef(null); - + const togglePopover = () => { setOpen(!open); };