{
this.doFilesChange(index, files.value);
}} />
}
}
];
const tableColumns = columns.map((col) => {
if (!col.editable) {
return col;
}
return {
...col,
onCell: record => ({
record,
inputType: col.dataIndex === 'PLATFORM_TYPE' ? 'Select' : 'text',
dataIndex: col.dataIndex,
title: col.title,
editing: this.isEditing(record),
}),
};
});
return <>
>
}
}
export default connect(({ login, app }) => ({ login, app }))(OG018Check)