This commit is contained in:
Allen
2018-10-06 16:29:08 +08:00
committed by GitHub
parent ae0cd8a32f
commit 8517248aee

View File

@@ -39,8 +39,10 @@ export default (options = {
const { data, columns } = this.props;
let { searchText } = this.props;
if (isRemoteSearch() && this.performRemoteSearch) {
handleRemoteSearchChange(searchText);
if (isRemoteSearch()) {
if (this.performRemoteSearch) {
handleRemoteSearchChange(searchText);
}
return data;
}