Skip to content

Commit 4e77a11

Browse files
committed
fix #963
1 parent 3510fa5 commit 4e77a11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TableEditColumn.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class TableEditColumn extends Component {
6262
let valid = true;
6363
if (ts.props.editable.validator) {
6464
const input = ts.refs.inputRef;
65-
const checkVal = ts.props.editable.validator(value);
65+
const checkVal = ts.props.editable.validator(value, this.props.row);
6666
const responseType = typeof checkVal;
6767
if (responseType !== 'object' && checkVal !== true) {
6868
valid = false;

0 commit comments

Comments
 (0)