-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Description
Currently checking if column is exportable is done like that
const canExport = accessor
? getFirstDefined(
column.disableExport === true ? false : undefined,
disableExport === true ? false : undefined,
true
)
: false;Wouldn't be better to do something like this:
const canExport = accessor
? getFirstDefined(
column.disableExport === true ? false : undefined,
disableExport === true ? false : undefined,
true
)
: column.getCellExportValue ? true: false;Metadata
Metadata
Assignees
Labels
No labels