ref: implement recentInputs on baseTerminalTab

This commit is contained in:
Clem
2023-04-22 15:23:59 +02:00
parent f423be1510
commit 6498c4f923
4 changed files with 21 additions and 17 deletions

View File

@@ -36,13 +36,14 @@ export class TelnetTabComponent extends BaseTerminalTabComponent<TelnetProfile>
}
})
this.frontendReady$.pipe(first()).subscribe(() => {
this.initializeSession()
})
super.ngOnInit()
}
protected onFrontendReady (): void {
this.initializeSession()
super.onFrontendReady()
}
protected attachSessionHandlers (): void {
const session = this.session!
this.attachSessionHandler(session.destroyed$, () => {