Skip to content

Commit 701b061

Browse files
Merge pull request #35 from xiuluodaren/master
修复bug
2 parents e3ffe86 + af73318 commit 701b061

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/HostKeyTree/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ class HostKeyTree extends Component {
331331
}
332332
);
333333
}
334-
this.searchKey(this.searchInput.current.input.state.value);
334+
this.searchKey(this.searchInput.current.input.value);
335335
}
336336
});
337337
};
@@ -415,7 +415,7 @@ class HostKeyTree extends Component {
415415
}
416416
);
417417
}
418-
this.searchKey(this.searchInput.current.input.state.value);
418+
this.searchKey(this.searchInput.current.input.value);
419419
}
420420
},
421421
(err) => {

0 commit comments

Comments
 (0)