We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0c4c40 commit 49bdcdfCopy full SHA for 49bdcdf
1 file changed
src/components/tableV2/features/globalControls.js
@@ -37,9 +37,11 @@ const GlobalControls = ({
37
/>
38
</Flex>
39
)}
40
- <Flex gap={1} data-testid="bulk-actions" width="100%" justifyContent="end">
41
- {bulkActions}
42
- </Flex>
+ {!!bulkActions && (
+ <Flex gap={1} data-testid="bulk-actions" width="100%" justifyContent="end">
+ {bulkActions}
43
+ </Flex>
44
+ )}
45
46
)
47
}
0 commit comments