From f7c9e644167532e8ad40410ff3bd8f45431124f3 Mon Sep 17 00:00:00 2001 From: RaoHai Date: Wed, 11 May 2016 11:00:42 +0800 Subject: [PATCH] repair `radio` type of rowSelection in `Table` close #1627 --- components/table/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/table/index.jsx b/components/table/index.jsx index d2e5a1a908..76dad5c8c6 100644 --- a/components/table/index.jsx +++ b/components/table/index.jsx @@ -393,7 +393,7 @@ export default class Table extends React.Component { })); } - renderSelectionRadio(value, record, index) { + renderSelectionRadio = (value, record, index) => { let rowIndex = this.getRecordKey(record, index); // 从 1 开始 let props = {}; if (this.props.rowSelection.getCheckboxProps) {