constructor()

in public/js/components/feature_table.js [17:29]


  constructor(props) {
    super(props);
    this.state = {
      currentFilter: ''
    };

    this._changeFilter = (query) => {
      this.setState({
        currentFilter: query.queryText
      });
      this.props.onFilterChange(this.getFilteredFeatures(query.queryText));
    };
  }