diff --git a/src/renderer/components/WorkspaceQueryTable.vue b/src/renderer/components/WorkspaceQueryTable.vue index d7079a20..e6334623 100644 --- a/src/renderer/components/WorkspaceQueryTable.vue +++ b/src/renderer/components/WorkspaceQueryTable.vue @@ -359,9 +359,14 @@ export default { downloadTable (format, filename) { if (!this.sortedResults) return; + const rows = this.sortedResults.map(row => { + delete row._id; + return row; + }); + arrayToFile({ type: format, - content: this.sortedResults, + content: rows, filename }); }