Skip to content

Commit 5532b98

Browse files
committed
notify on tab if !blurToSave
1 parent ab96032 commit 5532b98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TableEditColumn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class TableEditColumn extends Component {
2929
this._getCheckBoxValue(e) : e.currentTarget.value;
3030

3131
// TAB triggers blur so no need to notify
32-
const notify = e.keyCode !== 9;
32+
const notify = e.keyCode !== 9 || !this.props.blurToSave;
3333
if (!this.validator(value, notify)) {
3434
return;
3535
}

0 commit comments

Comments
 (0)