wingspan/wingspan-forms

SelectionListDismissible doesn't unregister out-of-band dom events on unmount (memory leak)

Closed this issue · 1 comments

SelectionListDismissible doesn't unregister out-of-band dom events on unmount (memory leak)

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);
        },