diff --git a/components/apolloTable/editFormV3/index.tsx b/components/apolloTable/editFormV3/index.tsx index cb121017a97ef7d4c73c9a4b2f934bff68c8f8ce..b276b6b257c00393595c6e92d6bb9ad398450eec 100644 --- a/components/apolloTable/editFormV3/index.tsx +++ b/components/apolloTable/editFormV3/index.tsx @@ -126,7 +126,9 @@ class FormWrap extends Component { if (_.isEqual(temp, newVal)) { return; } - onBlurFn(changedValue) + if (typeof onBlurFn === 'function') { + onBlurFn(changedValue) + } } return (