linting
This commit is contained in:
parent
96ea66f898
commit
43f7d1607d
|
@ -241,7 +241,6 @@ const s3UploadHandler = async action => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
const exportDataHandler = async action => {
|
const exportDataHandler = async action => {
|
||||||
let selection = rowSelectionStore.actions.getSelection(
|
let selection = rowSelectionStore.actions.getSelection(
|
||||||
action.parameters.tableComponentId
|
action.parameters.tableComponentId
|
||||||
|
|
|
@ -179,7 +179,7 @@ exports.exportRows = async ctx => {
|
||||||
let headers = Object.keys(result.rows[0])
|
let headers = Object.keys(result.rows[0])
|
||||||
const exporter = exporters[format]
|
const exporter = exporters[format]
|
||||||
const filename = `export.${format}`
|
const filename = `export.${format}`
|
||||||
|
|
||||||
// send down the file
|
// send down the file
|
||||||
ctx.attachment(filename)
|
ctx.attachment(filename)
|
||||||
return apiFileReturn(exporter(headers, result.rows))
|
return apiFileReturn(exporter(headers, result.rows))
|
||||||
|
|
|
@ -377,11 +377,11 @@ exports.exportRows = async ctx => {
|
||||||
).rows.map(row => row.doc)
|
).rows.map(row => row.doc)
|
||||||
|
|
||||||
let rows = await outputProcessing(table, response)
|
let rows = await outputProcessing(table, response)
|
||||||
|
|
||||||
let headers = Object.keys(rows[0])
|
let headers = Object.keys(rows[0])
|
||||||
const exporter = exporters[format]
|
const exporter = exporters[format]
|
||||||
const filename = `export.${format}`
|
const filename = `export.${format}`
|
||||||
|
|
||||||
// send down the file
|
// send down the file
|
||||||
ctx.attachment(filename)
|
ctx.attachment(filename)
|
||||||
return apiFileReturn(exporter(headers, rows))
|
return apiFileReturn(exporter(headers, rows))
|
||||||
|
|
Loading…
Reference in New Issue