SelectionListDismissible doesn't unregister out-of-band dom events on unmount (memory leak)
Closed this issue · 1 comments
dustingetz commented
SelectionListDismissible doesn't unregister out-of-band dom events on unmount (memory leak)
dustingetz commented
this is the fix, but I am not able to test that it works in the TMF:
componentWillUnmount: function () {
var $el = $(this.getDOMNode());
$el.off('click', '.iconDelete', this.onButtonClick);
},