Updated cleanExportRows import

This commit is contained in:
Dean 2023-01-10 09:50:32 +00:00
parent 4479c2477c
commit 2bf724b9b3
2 changed files with 5 additions and 4 deletions

View File

@ -20,7 +20,7 @@ import {
Datasource,
} from "@budibase/types"
const { cleanExportRows } = require("../row/utils")
const { cleanExportRows } = require("./utils")
export async function handleRequest(
operation: Operation,

View File

@ -38,6 +38,8 @@ import {
Table,
} from "@budibase/types"
const { cleanExportRows } = require("./utils")
const CALCULATION_TYPES = {
SUM: "sum",
COUNT: "count",
@ -417,7 +419,7 @@ export async function exportRows(ctx: Ctx) {
let rows: Row[] = []
let schema = table.schema
// // Filter data to only specified columns if required
// Filter data to only specified columns if required
if (columns && columns.length) {
for (let i = 0; i < result.length; i++) {
rows[i] = {}
@ -429,8 +431,7 @@ export async function exportRows(ctx: Ctx) {
rows = result
}
// @ts-ignore
let exportRows = cleanExportRows(rows, schema, format, columns) //this isnt correct
let exportRows = cleanExportRows(rows, schema, format, columns)
let headers = Object.keys(schema)
// @ts-ignore