use ssh connection name for the tab's title (fixes #621)

This commit is contained in:
Eugene Pankov 2019-01-27 22:56:50 +01:00
parent bf0d02d1fc
commit a2128ca1f2

View File

@ -26,6 +26,10 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
})
super.ngOnInit()
setImmediate(() => {
this.setTitle(this.connection.name)
})
}
async initializeSession () {