1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-23 13:13:49 +03:00

fixed infinite spinner loop

This commit is contained in:
Eugene Pankov 2023-03-18 16:45:47 +01:00
parent c2e7241a64
commit 9bd7a92bf8
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -136,6 +136,9 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
stream: {
write: x => {
try {
if (!this.frontend) {
return
}
this.writeRaw(x)
} catch {
this.spinner.stop()
@ -556,6 +559,7 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
/** @hidden */
ngOnDestroy (): void {
super.ngOnDestroy()
this.stopSpinner()
}
async destroy (): Promise<void> {