fix(ui): fix fetch filter
This commit is contained in:
parent
8bf1dcba18
commit
9da6788afd
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ export default class Fetch extends React.PureComponent {
|
|||
hasPreviousError: false,
|
||||
};
|
||||
|
||||
onFilterChange = (e, { value }) => {
|
||||
onFilterChange = (e) => {
|
||||
const value = e.target.value;
|
||||
const { list } = this.props;
|
||||
const filterRE = getRE(value, 'i');
|
||||
const filtered = list.filter(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue