(data)
| 11646 | // Converts to dataExport type and calls dataExportHandler to deal with data |
| 11647 | createExport(exportType, displayName) { |
| 11648 | const final = (data)=>{ |
| 11649 | this.props.dataExportHandler(data, exportType, displayName); |
| 11650 | this.close(); |
| 11651 | }; |
| 11652 | const json = JSON.stringify(this.props.data, columnReplacer); |
| 11653 | switch(exportType){ |
| 11654 | case "json": |