Fix typo in doc example code (#691)

This commit is contained in:
EricH 2018-12-02 00:48:52 -07:00 committed by Allen
parent 3f74542c98
commit c50853b16d

View File

@ -103,7 +103,7 @@ const columns = [{
}, {
dataField: 'quality',
text: 'Product Quality',
editorRenderer: (editorProps, value, row, rowIndex, columnIndex) => (
editorRenderer: (editorProps, value, row, column, rowIndex, columnIndex) => (
<QualityRanger { ...editorProps } value={ value } />
)
}];