Closed dman777 closed 5 years ago
Sorry, it wasn't a bug. The solution was to clone the array from the response JSON api.
.then((response)=> {
this.listings = [...response.results173];
})
It seems there remained the memory reference to the api array. This is a bit strange since I never had to do this in Polymer 1.
Description
Iron list does not clear results when given a empty array through computed binding
This works in Polymer 1, but not in Polymer 3