paper-tags-input
paper-tags-input copied to clipboard
error while deleting the tags
Hello I'm getting the below error while deleting the tags using the x button..any help?
tag-item.html:159 Uncaught TypeError: Cannot read property 'parentElement' of null
Here is actual line of code.
var parent = e.target.parentElement.parentElement.parentElement;
Hi @sowsan Can you provide more details about how to reproduce this bug?
There should be no reason to walk the parents of the event target in that event handler, since what you really want is this
. See #12