1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-12-18 15:41:54 +03:00

Merge pull request #1263 from Hammster/master

added proc destruction on tab close (fixes #1261)
This commit is contained in:
Eugene 2019-07-18 21:53:44 +02:00 committed by GitHub
commit 08910933e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,5 +97,6 @@ export class TerminalTabComponent extends BaseTerminalTabComponent {
ngOnDestroy () {
this.homeEndSubscription.unsubscribe()
super.ngOnDestroy()
this.session.destroy()
}
}