Skip to content

Commit

Permalink
Merge branch 'feat/allow-function-fields-in-export' into v2-develop
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Sep 4, 2024
2 parents cca6097 + 9372e9e commit 2b9e58a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/useExport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const convertToExportFields = ({
for (const key of Object.keys(fields)) {
const valuesForField = fields[key];

if (valuesForField.relation && valuesForField.is_function === true) {
if (valuesForField.relation) {
continue;
}

Expand Down

0 comments on commit 2b9e58a

Please sign in to comment.