I have a template repeat, shown below:
<template repeat="{{ data | removeEmpty}}">
<div>
<paper-input label="{{ [0] }} input description" required floatingLabel></paper-input>
</div>
</template>
This template works fine for when the data is updated through actually setting the data to be a different value so the initial render works fine going through the filter.
I updated the two-way bound variable data by changing the input of a text box which effectively DOES change the data. Now that the data has been changed, the template should re-render. It does not.
Now if I take the filter, removeEmpty, off the template will update. Is this a bug in polymer?