fixed toolbar state loading

This commit is contained in:
Eugene Pankov
2021-07-09 09:10:10 +02:00
parent 3db98aa421
commit 26ff6f17e7
3 changed files with 3 additions and 3 deletions

View File

@@ -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 () {