serial: fixed unnecessary spinner - fixes #6449

This commit is contained in:
Eugene Pankov 2022-05-21 20:03:32 -07:00
parent 5f0520def9
commit 1fb67e1730
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -767,10 +767,10 @@ export class BaseTerminalTabComponent extends BaseTabComponent implements OnInit
this.spinner.text = text this.spinner.text = text
} }
this.spinner.setSpinnerString(6) this.spinner.setSpinnerString(6)
this.spinnerActive = true
this.zone.runOutsideAngular(() => { this.zone.runOutsideAngular(() => {
this.spinner.start() this.spinner.start()
}) })
this.spinnerActive = true
} }
protected stopSpinner (): void { protected stopSpinner (): void {