Skip to content

Commit d718e4a

Browse files
committed
Fix bulk actions existence.
1 parent c8ca81e commit d718e4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/tableV2/netdataTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ const NetdataTable = ({
182182
<Flex height="100%" overflow="hidden" width="100%" column>
183183
{onGlobalSearchChange || hasBulkActions ? (
184184
<GlobalControls
185-
bulkActions={actions}
185+
bulkActions={hasBulkActions ? actions : null}
186186
dataGa={dataGa}
187187
handleSearch={onGlobalSearchChange ? onGlobalFilterChange : null}
188188
searchValue={globalFilter}

0 commit comments

Comments
 (0)