We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a054e5a commit 200b2e6Copy full SHA for 200b2e6
1 file changed
src/components/table/helpers/downloadCsv.js
@@ -17,7 +17,11 @@ const convertToCSV = data =>
17
18
export default (name = "netdata") =>
19
(_, table) => {
20
- const headers = table.getFlatHeaders().filter(header => !header.subHeaders?.length)
+ const headers = table
21
+ .getFlatHeaders()
22
+ .filter(
23
+ header => !header.subHeaders?.length && header.id !== "checkbox" && header.id !== "actions"
24
+ )
25
26
let data = [
27
headers.map(header => {
0 commit comments