mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
fixed toolbar state loading
This commit is contained in:
parent
3db98aa421
commit
26ff6f17e7
3 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,6 @@ import { SerialSession, BAUD_RATES, SerialProfile } from '../api'
|
|||
animations: BaseTerminalTabComponent.animations,
|
||||
})
|
||||
export class SerialTabComponent extends BaseTerminalTabComponent {
|
||||
enableToolbar = true
|
||||
profile?: SerialProfile
|
||||
session: SerialSession|null = null
|
||||
serialPort: any
|
||||
|
@ -25,6 +24,7 @@ export class SerialTabComponent extends BaseTerminalTabComponent {
|
|||
private selector: SelectorService,
|
||||
) {
|
||||
super(injector)
|
||||
this.enableToolbar = true
|
||||
}
|
||||
|
||||
ngOnInit () {
|
||||
|
|
|
@ -17,7 +17,6 @@ import { SSHPortForwardingModalComponent } from './sshPortForwardingModal.compon
|
|||
animations: BaseTerminalTabComponent.animations,
|
||||
})
|
||||
export class SSHTabComponent extends BaseTerminalTabComponent {
|
||||
enableToolbar = true
|
||||
Platform = Platform
|
||||
profile?: SSHProfile
|
||||
session: SSHSession|null = null
|
||||
|
@ -33,6 +32,7 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
|
|||
private ngbModal: NgbModal,
|
||||
) {
|
||||
super(injector)
|
||||
this.enableToolbar = true
|
||||
}
|
||||
|
||||
ngOnInit (): void {
|
||||
|
|
|
@ -14,7 +14,6 @@ import { TelnetProfile, TelnetSession } from '../session'
|
|||
animations: BaseTerminalTabComponent.animations,
|
||||
})
|
||||
export class TelnetTabComponent extends BaseTerminalTabComponent {
|
||||
enableToolbar = true
|
||||
Platform = Platform
|
||||
profile?: TelnetProfile
|
||||
session: TelnetSession|null = null
|
||||
|
@ -25,6 +24,7 @@ export class TelnetTabComponent extends BaseTerminalTabComponent {
|
|||
injector: Injector,
|
||||
) {
|
||||
super(injector)
|
||||
this.enableToolbar = true
|
||||
}
|
||||
|
||||
ngOnInit (): void {
|
||||
|
|
Loading…
Reference in a new issue