DEV: pass widget back when cleaning up stream (#9422)
This commit is contained in:
parent
e3590d4ead
commit
6023ea1979
|
@ -58,7 +58,7 @@ export default Component.extend({
|
|||
willClearRender() {
|
||||
const callbacks = _cleanCallbacks[this.widget];
|
||||
if (callbacks) {
|
||||
callbacks.forEach(cb => cb());
|
||||
callbacks.forEach(cb => cb(this._tree));
|
||||
}
|
||||
|
||||
this._connected.forEach(v => v.destroy());
|
||||
|
|
Loading…
Reference in New Issue