${Object.keys(this.header)
- .sort((k1, k2) => this.columnOrder.indexOf(k1) - this.columnOrder.indexOf(k2))
- .map(key => this.renderDataCell(key,
- rowData.row[key] ?? this.schema[key].default,
- rowData._id,
- rowData._originalIndex))}
+ .sort((k1, k2) => this.columnOrder.indexOf(k1) - this.columnOrder.indexOf(k2))
+ .map(key => this.renderDataCell(key,
+ rowData.row[key] ?? this.schema[key].default,
+ rowData._id,
+ rowData._originalIndex))}
|