Fix frontend

This commit is contained in:
Adria Navarro 2023-06-14 11:30:05 +01:00
parent 8e87e3cfc2
commit 2fe83a96f1
1 changed files with 4 additions and 1 deletions

View File

@ -54,7 +54,10 @@
const exportApp = async () => {
const id = published ? app.prodId : app.devId
const url = `/api/backups/export?appId=${id}`
await downloadFile(url, { excludeRows, encryptPassword: password })
await downloadFile(url, {
excludeRows: !includeInternalTablesRows,
encryptPassword: password,
})
}
export async function downloadFile(url, body) {