mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 13:30:02 +00:00
fixed toolbar state loading
This commit is contained in:
parent
3db98aa421
commit
26ff6f17e7
@ -14,7 +14,6 @@ import { SerialSession, BAUD_RATES, SerialProfile } from '../api'
|
|||||||
animations: BaseTerminalTabComponent.animations,
|
animations: BaseTerminalTabComponent.animations,
|
||||||
})
|
})
|
||||||
export class SerialTabComponent extends BaseTerminalTabComponent {
|
export class SerialTabComponent extends BaseTerminalTabComponent {
|
||||||
enableToolbar = true
|
|
||||||
profile?: SerialProfile
|
profile?: SerialProfile
|
||||||
session: SerialSession|null = null
|
session: SerialSession|null = null
|
||||||
serialPort: any
|
serialPort: any
|
||||||
@ -25,6 +24,7 @@ export class SerialTabComponent extends BaseTerminalTabComponent {
|
|||||||
private selector: SelectorService,
|
private selector: SelectorService,
|
||||||
) {
|
) {
|
||||||
super(injector)
|
super(injector)
|
||||||
|
this.enableToolbar = true
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit () {
|
ngOnInit () {
|
||||||
|
@ -17,7 +17,6 @@ import { SSHPortForwardingModalComponent } from './sshPortForwardingModal.compon
|
|||||||
animations: BaseTerminalTabComponent.animations,
|
animations: BaseTerminalTabComponent.animations,
|
||||||
})
|
})
|
||||||
export class SSHTabComponent extends BaseTerminalTabComponent {
|
export class SSHTabComponent extends BaseTerminalTabComponent {
|
||||||
enableToolbar = true
|
|
||||||
Platform = Platform
|
Platform = Platform
|
||||||
profile?: SSHProfile
|
profile?: SSHProfile
|
||||||
session: SSHSession|null = null
|
session: SSHSession|null = null
|
||||||
@ -33,6 +32,7 @@ export class SSHTabComponent extends BaseTerminalTabComponent {
|
|||||||
private ngbModal: NgbModal,
|
private ngbModal: NgbModal,
|
||||||
) {
|
) {
|
||||||
super(injector)
|
super(injector)
|
||||||
|
this.enableToolbar = true
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit (): void {
|
ngOnInit (): void {
|
||||||
|
@ -14,7 +14,6 @@ import { TelnetProfile, TelnetSession } from '../session'
|
|||||||
animations: BaseTerminalTabComponent.animations,
|
animations: BaseTerminalTabComponent.animations,
|
||||||
})
|
})
|
||||||
export class TelnetTabComponent extends BaseTerminalTabComponent {
|
export class TelnetTabComponent extends BaseTerminalTabComponent {
|
||||||
enableToolbar = true
|
|
||||||
Platform = Platform
|
Platform = Platform
|
||||||
profile?: TelnetProfile
|
profile?: TelnetProfile
|
||||||
session: TelnetSession|null = null
|
session: TelnetSession|null = null
|
||||||
@ -25,6 +24,7 @@ export class TelnetTabComponent extends BaseTerminalTabComponent {
|
|||||||
injector: Injector,
|
injector: Injector,
|
||||||
) {
|
) {
|
||||||
super(injector)
|
super(injector)
|
||||||
|
this.enableToolbar = true
|
||||||
}
|
}
|
||||||
|
|
||||||
ngOnInit (): void {
|
ngOnInit (): void {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user