1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-10-26 12:43:50 +03:00

ref(terminal) 7cde5c0807: clear service message on connection succeeds only

This commit is contained in:
Clem 2023-09-02 20:52:25 +02:00
parent 7cde5c0807
commit 04b53ab366

View File

@ -123,7 +123,7 @@ export abstract class ConnectableTerminalTabComponent<P extends ConnectableTermi
}
private clearServiceMessagesOnConnect (): void {
if (this.profile.clearServiceMessagesOnConnect) {
if (this.profile.clearServiceMessagesOnConnect && this.session?.open) {
this.frontend?.clear()
}
}