From 3e84d2ed09e02f86aa2be8f6c5542fb0345c7a02 Mon Sep 17 00:00:00 2001 From: Mateusz Kwasniewski Date: Tue, 23 May 2023 10:41:01 +0200 Subject: [PATCH] fix: make area behind bulk actions clickable (#3838) --- .../BatchSelectionActionsBar/BatchSelectionActionsBar.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx b/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx index f41d49432a..324b68671d 100644 --- a/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx +++ b/frontend/src/component/common/BatchSelectionActionsBar/BatchSelectionActionsBar.tsx @@ -11,6 +11,7 @@ const StyledStickyContainer = styled('div')(({ theme }) => ({ marginTop: 'auto', bottom: 0, zIndex: theme.zIndex.mobileStepper, + pointerEvents: 'none', })); const StyledContainer = styled(Box)(({ theme }) => ({ @@ -34,6 +35,7 @@ const StyledBar = styled(Paper)(({ theme }) => ({ borderRadius: theme.shape.borderRadiusLarge, gap: theme.spacing(1), flexWrap: 'wrap', + pointerEvents: 'auto', })); const StyledCount = styled('span')(({ theme }) => ({