I have a State with flights, and I have a slider to change the max price to change visibility of the flight elements.
maxpriceFilter() {
    var flightOffer = this.state.flightOffer;
    var sliderPrice = this.state.sliderPrice;
    for (var i = 0; i < flightOffer.length; i++) {
        if( flightOffer[i].price > sliderPrice) {   
            this.setState(
                {[flightOffer[i].hiddenprice] : true}
            );
        };
    }
This code is adding a undefined field with status true in the root of the state though.. I cant find any best practice on this, other then using computed fields. But I cant get the computed field working either..
Could someone please help me out here?